Manifest Theme

  • Unknown's avatar

    Hi there,
    I’m having a few problems with the Manifest theme.

    1. I would like the post title to be on the left instead of the center (by default).
    2. The “older” navigation to view older entries, how do I change it to an image?
    3. The navigation bar for my pages isn’t showing anything!

    Many thanks!

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    We need a link to the site you are talking about.

  • Unknown's avatar

    Sorry about that,
    the link is – http://www.nessalovesnette.com

    Thanks!

  • Unknown's avatar

    1.

    .entry-title {
    text-align: left;
    }

    2. Can’t be done via CSS. The links for older and newer are dynamically generated which means it all has to be done in the PHP script files and we do not have access to those. Something like this could be done if Internet Explorer would recognize a text color of “transparent,” but alas MS and IE are not that smart.

    You could put a background image behind the older and newer text, but that is about it.

    3. Do you have any published pages? By default the top nav menu will only show pages and those pages have to be published. What were you expecting it to show?

  • Unknown's avatar

    2. You could put an image to the left of the “older” navigation, like a left arrow or some other design element like that. Here’s a rough idea for how you’d add it in the Manifest theme:

    .prev a {
        display: block;
        background: url(YOUR_IMAGE_URL) no-repeat;
        height: HEIGHT_OF_YOUR_IMAGE_URL;
        padding-left: WIDTH_OF_YOUR_IMAGE_URL;
    }

    3. I see pages now–looks like you published some. Note that you can also use the custom menus option to get more control over what appears in the top navigation.

  • Unknown's avatar

    Thankyou so much for all your input! (:

  • The topic ‘Manifest Theme’ is closed to new replies.