itzaimz
Forum Replies Created
-
Forum: Themes and Templates
In reply to: I want to remove "home" title from my home pageI 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.
Forum: Themes and Templates
In reply to: Having Trouble Centering and imageIf 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
Forum: Fixing WordPress
In reply to: Appearance > Menus and Drop DownsResolved: as ahuggins replied, the drop down needed to be CSS based.
Forum: Fixing WordPress
In reply to: Appearance > Menus and Drop DownsHello 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,
AimeeForum: Themes and Templates
In reply to: How do you show portions of a post?Resolved: Add More tag to the posts. Magic Members offers a private tag to hide portions of a post from unsubscribed users.