Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • I haven’t read through the other responses, but what theme are you using, fifthhouse? Also, is your home page a default home page or are you using a different page to display as the front page?

    For most themes, the Pages are typically controlled by a page.php file located in the template directory. If you can find this file, find code that looks similar to the following. I say similar, because not every template displays the title exactly the same:

    <?php if ( is_front_page() ) { ?>
    <h2><?php the_title(); ?></h2>
    <?php } else { ?>
    <h1><?php the_title(); ?></h1>
    <?php } ?>

    Copy and paste what you find, or let me know if it’s the same. This would be the code that needs editing.

    If there is no other element within the div, you can remove this. Also, the align attribute is deprecated, meaning it’s unsupported in HTML 4.01 Strict / XHTML 1.0 Strict.

    Use CSS instead

    Try <img src=”…” style=”margin: 0 auto; display: block;” />

    If you have a separate stylesheet, you can apply an ID or class to the img and place the styles in the stylesheet. For instance:

    header.php: <img src=”…” class=”center-element” />
    stylesheet: .center-element{ margin: 0 auto; display: block; }

    For more information on the margin and display properties, please reference w3schools.com

    Thread Starter itzaimz

    (@itzaimz)

    Resolved: as ahuggins replied, the drop down needed to be CSS based.

    Thread Starter itzaimz

    (@itzaimz)

    Hello ahuggins,

    Thank you for your assistance. Here is the pastebin HTML page code: http://pastebin.com/xTNU1jLp

    The theme is Starkers, and it does support Menus. The Menus show when I use the Starkers navigation menu stand-alone, but they do not show when I activate a drop down widget. The widgets display the pages.

    The navigation code is automatically generated by the widget, “Dropdown Menu Widget.”

    Thanks again,
    Aimee

    Thread Starter itzaimz

    (@itzaimz)

    Resolved: Add More tag to the posts. Magic Members offers a private tag to hide portions of a post from unsubscribed users.

Viewing 5 replies - 1 through 5 (of 5 total)