Peter Boosten
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Comment Not Appearing?How about plugins? What plugins (especially regarding comments) do you have installed and activated?
Peter
Forum: Themes and Templates
In reply to: CSS layout IE bugThink I found it:
This element:
<div class="intro-text">is not properly terminated
</div?You should validate your xhtml.
Peter
Forum: Themes and Templates
In reply to: Header Floats Left in IEplease excuse my ignorance but does it matter that the background-attachment line isn’t indented like the other coding?
Makes absolutely no difference.
What’s the url to your site?
Peter
Forum: Themes and Templates
In reply to: Browser incompatabilityIt’s not displaying very well in my FF, because of the sidebar being too wide. If you change it from 300px to 295px, and make it float: left, it’ll display like it should.
I recommend a ‘clear: both;’ on the footer.
Peter
Forum: Themes and Templates
In reply to: Header Floats Left in IEApologies. Change this:
#header { height: 216px; background: url(images/header.jpg) no-repeat center; }into this:
#header { height: 216px; background: url(images/header.jpg) no-repeat center; background-attachment: fixed; }Peter
Forum: Themes and Templates
In reply to: Header Floats Left in IETry using ‘fixed’ as background-attachment.
Peter
Forum: Themes and Templates
In reply to: CSS layout IE bugmy bet would be this:
margin-top: 120px;, but to be absolutely sure I would have to need an url to the live site.Peter
Forum: Themes and Templates
In reply to: Editing Menu Bar Text ColorWhich one are you trying to make stand out?
All list items in the navigation bar have their own class (for instance: ‘Services’ has ‘page-item-6’ – you can view that in the rendered source in your browser). That makes it quite easy to target a specific menu item.
Peter
Forum: Themes and Templates
In reply to: IE6 vs FirefoxI suspect the relative positioning has something to do with it (and especially percentages. If you want div elements (and you have quite a lot of them) to have specific widths, you’re better of by specifying them in px.
Nice pictures, btw.
Peter
Forum: Themes and Templates
In reply to: Making sidebar headings into imagesput something like this in your stylesheet (style.css):
for categories:
#categories-264771141 h3 { background-image: url(your_image); text-indent: -9999px; }The other widgets have these id’s
#recent-posts
#flickr-sidebar
#text-505327291
#search
#archives
#linkcat-2
and
#gfc-loginPeter
Forum: Themes and Templates
In reply to: Page Names are preceeded by a colonDid you edit your header.php? Have a look there.
Peter
Forum: Themes and Templates
In reply to: Need help on my footer…#footer needs a ‘clear: both;’
Peter
Forum: Themes and Templates
In reply to: The *BEST* Themes/Template tutorial?I’ve seen many tutorials, but what I though of as enlightening was a book called ‘A Complete Guide to Creating Professional WordPress Themes’ by Tessa Blakeley Silver (Packt Publishing).
Also, http://css-tricks.com has some good tutorials (screencasts).
Peter
Forum: Themes and Templates
In reply to: WordPress or Joomla!You know were to ask your questions, right? 🙂
Good luck.
Peter
Forum: Themes and Templates
In reply to: How to tie an image to textCreate something like this:
<h2>KAI OLABISI ABOSEDE <span class="lineundername">SOREMEKUN</span></h2>and attach it as background to this span.
Peter