Peter Boosten
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Creating links for my navigation in the header graphickeyword will be: position: absolute;
In example:
<div id="nav"> <ul> <li class="home"><a href="/">home</li> <li class="contact"><a href="/contact">contact</li> <li class="about"><a href="/about">about</li> <li class="links"><a href="/links">links</li> </ul> </div> <!-- end nav -->and your css
#nav { background: (your.picture.jpg) no-repeat; position: relative; } #nav li { text-indent: -9999px; } li.home { position: absolute; left: 10px; top: 100px; width: 25px; }You need to experiment with the left/top/width parameters, and you’ll probably need more css, but this gives you something to start with.
Peter
Forum: Themes and Templates
In reply to: problem with aliging images to the left (IE6)link to your site?
Peter
Forum: Themes and Templates
In reply to: How to remove border on gallery images???okaay was talking about a plugin. Search [webroot]/wp-content/plugins for that particular css
Peter
Forum: Themes and Templates
In reply to: How to remove border on gallery images???#gallery-1 img { border:2px solid #CFCFCF; }Remove the border statement. It’s in your header file (probably header.php).
Peter
Forum: Themes and Templates
In reply to: Posts Skewed to the right on home pageYou’re missing a closing div tag, right after this text:
It may have announced its entry into the Pakistani market now…
Also, have a look here
Peter
Forum: Themes and Templates
In reply to: Need help for Title css and imageTry using a transparent gif file instead.
A gif file will look horrible though… Search Google for ‘pngfix’, you’ll find several javascript based solutions.
Peter
Forum: Themes and Templates
In reply to: Programmer Coded in base64?> <!-- begin footer --> <div id="footer"> © 2009 <a href="<?php echo get_settings('home'); ?>/"> <?php bloginfo('name'); ?></a> <div id="credit"></div> </div> </div> </body></html>Peter
Forum: Themes and Templates
In reply to: e-commerce plugin vs WP Shop theme (or similar)Ever though about Foxycart?
Peter
Forum: Themes and Templates
In reply to: My theme has many problems.And for your footer you need a clear:
#footer { background:transparent url(http://i78.photobucket.com/albums/j98/klewyx/footer_ap.png) repeat scroll 0 0; clear:both; height:382px; text-align:left; width:800px; }Peter
Forum: Themes and Templates
In reply to: My theme has many problems.next step is to change the list style type of the outer ul
.sidebar ul li { font-family:Tahoma,Arial; font-size:11px; list-style-image:none; list-style-position:outside; list-style-type:none; }and the inner lu
.sidebar ul ul li { line-height:24px; list-style-image:none; list-style-position:outside; list-style-type:disc; margin-left:-30px; padding:0; }Peter
Forum: Themes and Templates
In reply to: getting rid of the little black dots?Hmmm, in your structure are list items (
<li>), without the surrounding (un)ordered list defined (<ul>and<ol>). I suspect that these dots come from the list items.Peter
Forum: Themes and Templates
In reply to: External xml –>xslt –>wordpressNot really a question for this forum, maybe you’ll find your answers here.
Peter
Forum: Themes and Templates
In reply to: Different PAGE theme from POSTS?No, I know nothing about that theme. Is there any way we can have a look at your site and look how pages affect your theme?
How did you apply that different theme?
Peter
Forum: Themes and Templates
In reply to: My theme has many problems.Let us take one step at a time.
Oke, start by changing this:
.post { padding : 10px 20px 10px 20px; }into this:
.post { padding : 10px 20px 10px 20px; margin: 0 30px; }Peter
Forum: Themes and Templates
In reply to: Limiting post length in blogrollHmm, maybe it’s time thinking about using the excerpt feature. That requires you to do some work, but it might accomplish anything you’re trying to achieve.
Peter