kiddeath91
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Replacing default bulletsfroots,
I’m looking at your css and I don’t see that you added the fix. Should look like this:
body {
font-size: 62.5%; /* Resets 1em to 10px */
font-family: 'Georgia', Verdana, Arial, Sans-Serif;
background-color: #818181;
color: #818181;
margin:0 auto;
text-align: center;
}Forum: Fixing WordPress
In reply to: Replacing default bulletsYou must have the directory wrong to where you are trying to point to for those bullets.
For the IE thing, add this to your BODY css
margin:0 auto;
Forum: Fixing WordPress
In reply to: Replacing default bulletsand one
)
at the end. Yep you got it Podz. ??Forum: Fixing WordPress
In reply to: Replacing default bulletsTry enclosing the location:
list-style-image:url(wp-content/themes/default/images/arrow.gif);
Forum: Fixing WordPress
In reply to: Title ColoursIf you are refering to your blog post titles then look for this:
<div class="post"><h2 id="post-x"><a href=""></a></h2>
I don’t use the templates, but anything in your css that has .post, .post h2, .post h2 a or some similar pattern should control your post title color.
Forum: Your WordPress
In reply to: First blog – yoga, meditation, computers, moreCongrats on your first blog and welcome! Looks good. Maybe you should have a little note in your sidebar telling everyone its Austin time like you do in your post. Unless, of course, you don’t plan on keeping it there permanently.
Forum: Your WordPress
In reply to: Custom Theme – Take a lookLooks sharp. I wish the links were the same color as the post background (yellowish). A little too dark with the background they are in right now.
Becca’s work is good. Her site kinda looks like yours, just reversed.
Forum: Fixing WordPress
In reply to: css requiring tagsGet rid of those too you silly! You don’t need em.
Forum: Fixing WordPress
In reply to: css requiring tagsTry just getting rid of the
<ul>
and<li>
in this code:<ul>
<?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>
<li>Forum: Fixing WordPress
In reply to: CSS question<h2>
is block-level by default. I don’t think anchors are. Try everything with your css. The first I would try with these links you refer to is:div# a {display:block}
A combination of margins and paddings should get you the styling you’re looking for.
Forum: Fixing WordPress
In reply to: css requiring tagstjihn200, you should post a link. I would suggest you do exactly the same thing you’ve done for your Categories, by taking it outside of the
<ul>
:<div class="title"><br />Meta</div>
<ul>
<li><a href="">Register</a></li>
<li><a href="">Login</a></li>
<li><a href="">Valid XHTML</a></li>
<li><a href="">XFN</a></li>
<li><a href="">WordPress</a></li>
</ul>Forum: Fixing WordPress
In reply to: “body” problem with “About” pageTG, you demonstrated the point, perfectly. Your #content is floated right. Therefore it can come before or after the floated sidebar. I was referring to a circumstance where only one side was being floated.
Forum: Fixing WordPress
In reply to: “body” problem with “About” pageCheck your css to see if your sidebar says “float:left”. If it does, leave it alone in your html. If it doesn’t, you can move it after your #content and just before your #footer. If it is floated, it has to come first. If you don’t believe it, try it and you’ll see. ??
Forum: Fixing WordPress
In reply to: “body” problem with “About” pageI think they just made that extension unavailabe since the security upgrade release. That was a nice tool. For now just use w3’s validator. You’ve got some errors.
Forum: Fixing WordPress
In reply to: “body” problem with “About” pageMtDV, good point. But keep in mind that if that sidebar is floated, it has to come first. I don’t use the WP template so I don’t know if this is the case here.