Peter Boosten
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Mocking up new Template…IssuesOke, that was the easy shot 😉
Your clearing of the floats isn’t right.
#content is supposed to be around .blog-content and #sidebar, but it isn’t. Try this by giving #content a red border, you’ll see.I think you got to reevaluate the position of the clear: both;, or the way to put it there (I usually create an empty div).
Peter
Forum: Themes and Templates
In reply to: Need help on wordpress CSS style sheetsecond that: I took a quick look at your site, but there are no easy instructions.
Peter
Forum: Themes and Templates
In reply to: Mocking up new Template…IssuesMost errors with IE are because of xhtml errors.
Peter
Forum: Themes and Templates
In reply to: I think the update overrode my customized headerAs far as I can see you’re still using the default style sheet, and yes, that will be overwritten.
http://cblpi.org/senseandsexualityblog/wp-content/themes/default/style.cssimages, referred to in this stylesheet are relative to that stylesheet, therefore image paths like ‘images/whatever.jpg’ are in the default theme directory as well.
What you should do is create a complete copy of that default theme directory, and call it for instance st7134. Then make modifications in that directory. That’s never overwritten by an update.
Peter
Forum: Themes and Templates
In reply to: Page background looks horrible in IE but fine in FirefoxThe validator finds some errors, however I cannot confirm thos when vieuwing the source.
Maybe it’s due to some plugins?
Peter
Forum: Themes and Templates
In reply to: I think the update overrode my customized headerurl to your site?
Peter
Forum: Themes and Templates
In reply to: How do you change the sidebar width?Your h2’s and sidebar-bottom also have a width, change them accordingly.
The main problem however will be your content, since its background (the white thingy) is a gif. If you want this area bigger, you’ll have to adjust that gif file.
Peter
Forum: Themes and Templates
In reply to: BUG in WordPress 2.8.4 – custom page template doesn’t work ?Are you people using Gears?
Peter
Forum: Themes and Templates
In reply to: Beginner needs help with comments and archives page for pressrowIn order to get the comment thingemy nice, change this:
<?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?>into this:
<?php comments_popup_link('No Comments', '1 Comment', '% Comments', 'comments'); ?>That should do the trick to get the readers right away to the comment space.
Peter
Forum: Themes and Templates
In reply to: Beginner needs help with comments and archives page for pressrowwhich way you wanna go? permalinks, or no permalinks?
Let’s start with number 2, since that’s the easiest.
Go to your admin panel, and select ‘pages’ on your left hand side. Now hover over the about page you created (not click), and watch your status bar (of the browser). It should say something like:
http://sortakindafamous.com/wp-admin/page.php?action=edit&post=10, where the number10can be different, however is crucial to what we’re trying to accomplish. Remember this number.Now go to the header.php, and find the spot where you removed the ‘archives’ part, earlier in this thread.
Change the url for the about page, specifically where it says
/aboutyou change it into/?p=10, where you replace the10with the number you just remembered.That should be about it.
Peter
Forum: Themes and Templates
In reply to: Beginner needs help with comments and archives page for pressrowthose aren’t backticks, but never mind… the function needs underscores, not dashes (comments_popup_link vs comments-popup-link).
Peter
Forum: Themes and Templates
In reply to: Beginner needs help with comments and archives page for pressrowcomments_popup_link, I assume?
Peter
Forum: Themes and Templates
In reply to: Beginner needs help with comments and archives page for pressrowwhat exactly did you change to the comments_popup_link()?
Can you copy that part (starting from
<?phpend ending at?>) here?Remember to use backticks around that part.
Peter
Forum: Themes and Templates
In reply to: Beginner needs help with comments and archives page for pressrowThe problem with permalinks is, that they require something called mod_rewrite on your apache, and a .htaccess file in your webroot (if you enable permalinks, you’ll see the content for that .htaccess in your browser).
If your webserver isn’t configured to use mod_rewrite, then you can swiftly forget about permalinks 🙂
Without permalinks, you can access the about page by modifying the link to its ID, like
/?p=24(the number is just an example, you can find the correct page ID from the admin page, just by hovering the mouse over the ‘edit page’ link and watch carefully in your status bar.Peter
Forum: Themes and Templates
In reply to: Beginner needs help with comments and archives page for pressrowAh, now I know: comments-popup-link takes a fourth parameter, which should be ‘comments’ in your case (index.php).
Peter