Peter Boosten
Forum Replies Created
-
Forum: Themes and Templates
In reply to: IE6 png fix not working fully …The site looks the same to me in ie8 and compatibility mode.
What exactly is it your seeing?
Peter
Forum: Requests and Feedback
In reply to: New “Profiles” aren’t much helpI liked the old one more than the new profile page, especially because of the reason kmessinger mentiones.
Why was it changed, and can’t we go back?
Peter
Forum: Themes and Templates
In reply to: IE6 png fix not working fully …My javascript doesn’t look like yours….
Peter
Forum: Themes and Templates
In reply to: Picture background many sizesAnd I’m a “she, btw. 🙂
Oops… sorry.
Peter (definitely a he)
Forum: Themes and Templates
In reply to: IE6 png fix not working fully …Forum: Themes and Templates
In reply to: IE6 png fix not working fully …another excelent PNG fix that I usually apply is :
http://homepage.ntlworld.com/bobosola/index.htmThe problem with this one is that it doesn’t support background images in css, unfortunately, since it’s working perfectly on foreground images.
Peter
Forum: Themes and Templates
In reply to: Submit button not appearing in Search WidgetIt only overwrites what has been specified. All other settings are added.
Peter
Forum: Themes and Templates
In reply to: IE6 png fix not working fully …I’ve been working on this as well for some png’s on my site and the problem lies within the ones in the background. I found a working one today, but don’t have the url on me right now. You could search for bgsleigh.js (iirc), or you’ll have to be patient 🙂
edit: Here it is. It involves a javascript and a 1x1px transparent gif file.
And even more fancy: as a plugin to jQuery.
Peter
Forum: Themes and Templates
In reply to: Page not centered in Internet explorer 6hmmm, normal structure of a html page:
<html> <head> <title></title> </head> <body> ... </body> </html>From this basic fact your closing body tag needs to be at the bottom of your page, translated to wp mostly in the file footer.php (but YMMV).
In 99.99% of all cases these errors make IE act different than expected.
Peter
Forum: Themes and Templates
In reply to: Page not centered in Internet explorer 6Start by fixing your xhtml.
Peter
Forum: Themes and Templates
In reply to: Submit button not appearing in Search WidgetFind this:
.aside #searchsubmit { display:none; }and remove the ‘display: none;’
Peter
Forum: Themes and Templates
In reply to: CSS not working on pagesStart by correcting the errors.
Peter
Forum: Themes and Templates
In reply to: I want to make my own theme, but?The URL to your theme. Just put in the URL to your site.
Peter
Forum: Themes and Templates
In reply to: headerimage float center instead of leftfloat: center;doesn’t exist.What you need to do is change the margin of headerimage to auto:
margin: auto;Peter
Forum: Themes and Templates
In reply to: adding “Comments Closed” to themeI can’t imagine anyone not being offended by the responses you gave as well as the tone of them.
Krembo99 is a very dedicated helper, and maybe you had the bad luck catching him on a bad day. but my experiences with his answers never struck me as offending.
Apparantly the code written above is not enough: You need to embed the code in an if statement:
Hide Comment Link When Comments Are Deactivated Hides the paragraph element <p></p> that contains the comments_popup_link when comments are deactivated in the Write>Post screen. Good for those who want enable/disable comments post by post. Must be used in the loop. <?php if ( comments_open() ) : ?> <p> <?php comments_popup_link( 'No comments yet', '1 comment', '% comments so far', 'comments-link', 'Comments are off for this post'); ?> </p> <?php endif; ?>Peter