Peter Boosten
Forum Replies Created
-
Forum: Themes and Templates
In reply to: IE pushing content down (when in compatiblity mode only)Hmmm, for starters: your head tag is missing. I can imagine IE having problems with this.
(
<head>)Peter
Some more info: your xhtml is supposed to be xhtml1-transitional, and in that case browsers inspect the code a bit more. It also looks for missing closing tags.
You have a few css errors as well.
Forum: Themes and Templates
In reply to: segust me some colors for my themetry this
Peter
Forum: Themes and Templates
In reply to: How to remove permalinks on each post’s titleIn the php files there should be a reference to these permalinks, looking like this:
<a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a>Remove the anchor links:
<?php the_title(); ?>Peter
Forum: Themes and Templates
In reply to: I need to change behind background color, How do I do it?It’s a gif (bg_body.gif) in your body style (style.css) that needs to be changed.
body { background:#6292AC url(images/bg_body.gif) repeat scroll 0 0; }replacing the gif by your own is not that hard, however, since the rounded corners on your site all carry a bit of that background color, you will need to change them as well.
Not easy to describe in a few words.
Peter
Forum: Themes and Templates
In reply to: Still struggling with themes!show us 15 top rows of your style.css (via pastebin)
I suppose your mythemes directory (or whatever you call it) is in/wp-content/themes/, right?Peter
Forum: Themes and Templates
In reply to: Making the wordpress site under the home directoryRead here
Several steps you already did (like moving into the subdirectory), just perform the rest.
Peter
Forum: Themes and Templates
In reply to: Theme not loadingI don’t know whether themes are compatible between .com and .org, I only can tell you how a theme for .org should look like.
Peter
Forum: Themes and Templates
In reply to: pictures are automatically scaling (larger than intended)Your style.css contains this:
.alignleft { float:left; width:50%; }the
widthvalue is doing this. removewidth: 50%;Peter
Forum: Themes and Templates
In reply to: Page can’t be foundA link would be best, but I can imagine the theme builder added paths to urls that would require mod_rewrite to be active (and configured in WP -> Permalinks). If that’s the case I’m sure the theme builder left some documentation about that requirement.
Peter
Forum: Themes and Templates
In reply to: Theme not loadingForum: Themes and Templates
In reply to: Building a site from single.phpWhat is needed is at least an index.php and style.css
If you additionally want a single.php then it should be fine.
http://codex.wordpress.org/Template_Hierarchy
Peter
Forum: Themes and Templates
In reply to: Can’t Install ThemeWent to WP-ADMIN and the template was available to activate. I can now customize the template – but had to change a few CHMODS but you will get red text telling you which folders to change CHMODS for.
Then that’s your problem: in order to do anything via the webinterface the user apache runs on has to have write access to the entire /wp-content/ directory (and sub directories).
Peter
Forum: Themes and Templates
In reply to: Floating FooterI cannot confirm that your footer is actually (right) below the header, in my FF it’s below the right column (assuming the footer is the ‘Powered by WordPress’ thingemie).
Anyway, if you add
clear: both;to#footer_link, then it’ll move down.It has however a
display: none;in it, which won’t make it show on screen.Peter
Forum: Themes and Templates
In reply to: blank theme!Nothing out of the ordinary here… let’s see your sidebar.php as well.
Other possibility: badly behaving plugins.
Peter
Forum: Themes and Templates
In reply to: blank theme!">©2009 Gareth Gillman | Theme by Gareth Gillman | CSS3 Curve Theme | All Rights ReservedSomething missing?
please put between backticks.
Ah, Thnx.
Peter