staceyl
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Link underlines in CSSOK, sorry hehe. Where it has
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>add
class="noline"after the<aSavvy? That takes care of the header and that should be the same for both files.
Then for the category and commenting bizo, where you have
<p class="postmetadata">Posted in <a href="http://castlefairchild.com/?cat=3" title="View all posts in The United States of America" rel="category tag">The United States of America</a> <strong>|</strong> <a href="http://castlefairchild.com/?comments_popup=30" onclick="wpopen(this.href); return false">Leave a Comment »</a></p>Do the same, adding
class="noline"after the<as. There should only be 2.Forum: Themes and Templates
In reply to: How do I add a left sidebar?Do you know about classing and floating div layers? If so, create a new div layer, class it “sidebar” and in your CSS you add left float to whatever other styles you want.
div#sidebar{
float:left;
}This will work providing your content div is being floated RIGHT. I suggest you make a “wrapper” div:
div#wrapper{
width:SIDEBAR+CONTENTSWIDTHpx;
}and hedge your divs as so:
<div id="wrapper">
<div id="sidebar">
Links</div>
<div id="content">
Content
</div></div>Hope that helps!
Forum: Requests and Feedback
In reply to: Need to hire a expert on wordpressWhat is the website’s URL?
Forum: Themes and Templates
In reply to: Link underlines in CSSOK I see now hehe. In this case I WOULD use the
.post a{
text-decoration: underline;
}(which simply makes all links in the
<div id="post">underlined, hence your problem).However, to fix your problem I’d edit your index.php and single.php and class the header (you’ve obviously done this already) and the category and comment links, so that you can control their styles and get rid of the underline.
So:
<a class="noline" href="http://comments.php">Leave a comment</a>
and<a class="noline" href="http://category.php">Categories</a>And in your CSS, add:
a.noline{
text-decoration: underline;
}That SHOULD fix it.
Forum: Your WordPress
In reply to: What do you think?Just so you know, there is such a thing as an edit button. =)
Well first impression= busy. You don’t really know where to look first, and the fact that everything’s the same colour doesn’t help either. Business is mostly due to the triple-column effect. I don’t know whether both the narrow ones are necessary, quite frankly.
Layout= pretty plain. I’d like a more colourful background image or header image, but hey, it’s your site. Also, the header image took a fair while to load (for an un-complex image), and I’m on broadband here.
Overall= organised and professional, albeit a little cluttered.
Forum: Themes and Templates
In reply to: Link underlines in CSSWell I’m no expert but personally I’d type:
a.post{
text-decoration: underline;
}instead of
.post a{
text-decoration: underline;
}But that won’t make a difference unless you have a whole
with the class of “post”. Instead, just class the link. E.g.<a class="post" href="http://blah">Home</a>And I’m not quite understanding the last part of what you said. You DON’T want a line beneath category names etc? In that case, create another link class such as:
a.noline{
text-decoration: underline;
}…for all the links that you don’t wany you have underlines. This would be a lot easier, in my opinion. Hope that helps you a bit.