Peter Boosten
Forum Replies Created
-
Forum: Themes and Templates
In reply to: My blog body is going to left in mozilla firefox….The solution probably is resolving these…
Peter
Forum: Themes and Templates
In reply to: Can I use a special theme on a single page onlyIf it’s about a different layout, just start by copying the existing page.php to a new file, and make that file your page template.
The rest boils down to xhtml and css knowledge, you don’t have to bother with the wordpress php at first.
Peter
Forum: Themes and Templates
In reply to: My sidebar has moved since i posted a second post.you missed a div somewhere: your sidebar (250+px) is now part of main (520+px), which also holds main1 (520+px).
Like I wrote before there’s no room for the sidebar.
(btw: I really saw the sidebar left of the main content, so there must have been changed somethimg in the meantime – next time I make a screenshot).
Peter
Forum: Themes and Templates
In reply to: Comments Not Working?You really should have started a new thread, but besides that I think you forgot a semicolon somewhere.
(cannot tell from the code you posted)
Peter
Forum: Themes and Templates
In reply to: My sidebar has moved since i posted a second post.I cannot see your sidebar being below your content, but I’m using Firefox on OSX. Could you be more specific?
Normally you get this when both sidebar and content (including their padding and margins) are to wide to fit in their wrapper.
Remember that IE’s boxmodel is different from others.
btw: while you fixed your index.php, you screwed up your single.php (now there are two clising div tags too many).
Peter
Forum: Themes and Templates
In reply to: Two different themes for the same web siteTo get the wording right:
You can only have one theme active at a time, but you could apply different templates to different pages (and that’s exactly what esmi states).
Peter
Forum: Themes and Templates
In reply to: MAC vs PC viewingDid you click the WOW link?
It shows all 320 validation errors on your page. Try fixing these first, since it’ll throw browsers into quirks mode, and it’ll get you unpredicted results.Peter
Forum: Themes and Templates
In reply to: Validation problems.<center>is sooooo 1990 😉 remove it and style it through css (text-align: center;).Error Line 164, Column 7: end tag for "div" omitted, but OMITTAG NO was specifiedYou forgot the closing tag for
<div id="main">and<div id="wrapper">Peter
Forum: Themes and Templates
In reply to: Displaying perfectly on OSX but not on Windowsclose head (
</head>).This kind of forgotten tags takes IE into quirks mode.
Peter
Forum: Themes and Templates
In reply to: Displaying perfectly on OSX but not on Windowsyou’re still missing the closing body tag
</body>Peter
Forum: Themes and Templates
In reply to: Displaying perfectly on OSX but not on WindowsValidate your code…
Peter
Forum: Themes and Templates
In reply to: Designs and Uploading themesThat’s your job. As is the support you (should) give.
But there are sites that can help you, like browsershots.
Peter
Forum: Themes and Templates
In reply to: Designs and Uploading themesas long as it doesn’t look like a standard WordPress blog 😉
Please be creative, and share your results with us.
Peter
Forum: Themes and Templates
In reply to: URGENT – Images disappeared upon 2.8.6 upgradeAre they really gone (from wp-content/uploads/*), or have links been changed?
I’ve updated 4 sites to 2.8.6 without these kind of problems.
Peter
Yes, that’s the beauty of WordPress that pages can be displayed by using different templates (page.php) than for instance posts (single.php). You can structure page.php to display without a sidebar, while the rest of your site has one.
Peter