Peter Boosten
Forum Replies Created
-
Forum: Themes and Templates
In reply to: simple css helpPS: sorry to jump in with a different idea, I was busy checking while Peter worked on it.
It’s good to have more than one person look at it 😉
Peter
Forum: Themes and Templates
In reply to: simple css helpwhen I removed the height in ‘#navbar’ and changed the padding to ‘0 7px’ in ‘#navbar a’, the navbar and content would get together. I lost the background of navbar however.
Peter
Forum: Themes and Templates
In reply to: where is a good step by step tutorial?css-tricks.com has a three part screen cast about creating a wordpress theme from a postscript mockup.
Peter
Forum: Themes and Templates
In reply to: simple css helpalso, the padding in ‘#navbar a’ adds up to the total.
Peter
Forum: Themes and Templates
In reply to: simple css helpyou mean this?
#navbar { height:34px; }Peter
Forum: Themes and Templates
In reply to: 2 Pictures on the login page- embed both pictures in a div
- use absolute positioning
Peter
Forum: Themes and Templates
In reply to: sidebar helpThe sidebar is next to the last left floating post. You should wrap your posts in one div, floating left.
now:
content post post sidebar end contentshould be
content wrap post post end wrap sidebar end contentPeter
Forum: Themes and Templates
In reply to: 2 Pictures on the login pageSeveral options, but one might be margins in px instead of percentages.
You know you will lose these changes when wordpress upgrades, right?
Peter
Forum: Themes and Templates
In reply to: category page, display number of postsGregory,
Your question is ambigious: what exactly isn’t working? Are you unable to edit, do you have currently 5 posts and want more (or less), do you see anything at all, so for what problem do you need a work around?
Peter
Forum: Themes and Templates
In reply to: Permalink page editingThere’s no permalink page, but I suspect you mean single.php.
Peter
Forum: Themes and Templates
In reply to: problem with aliging images to the left (IE6)Hi, it’s not you, it’s me (well, actually it is you).
eyeblaster.com has been tagged as a malware distributing domain by yoyo.org.
Every domain in this list (currently 2557) links back to a blackhole destination. Therefore I cannot reach you.
Peter
Forum: Themes and Templates
In reply to: Adding my own designWordPress cannot do anything with photoshop files.
It needs at least two files to function: style.css and index.php.
You need to translate your photoshop file into these files (containing real xhtml and css).
Peter
Forum: Themes and Templates
In reply to: How to remove border on gallery images???One thing is for sure: it has to come from somewhere. Since you don’t have any plugins, search your entire theme folder for “border: 2px solid #cfcfcf”
Peter
Forum: Themes and Templates
In reply to: Need help for Title css and imageI haven’t cooked anything up till now.
Oke, in your single.php somewhere is a snippet like this:
<?php the_title(); ?>change that to this:
<?php $title=$post->post_title; $len=strlen($title); echo '<span class="titleleft">'.substr($title,0,$len/2).'</span><span class="titleright">'.substr($title,$len/2).'</span>'; ?>In your style.css you should then add the following:
.titleleft { color: #F00; } .titleright { color: #00F; }If you already have defined a titleleft and titleright class, please change the above to something of your choice. Furthermore, the colors are for demonstration purposes, please change them to your likings.
Peter
Forum: Themes and Templates
In reply to: calling function in footerYes, it’s possible. Have a look in the codex.
Peter