kohaku
Forum Replies Created
-
Forum: Themes and Templates
In reply to: CSS Browser IE ProblemI noticed that your contentleft is larger than your content area. One is 721px the other has TWO widths (640 !important & 670). I would choose one of those.
You also have two padding-lefts.
Forum: Themes and Templates
In reply to: Whats Wrong with my Theme?The first thing that comes to mind is that your content area is too big to allow the sidebar to fit next to it.
The second thing that comes to mind is a tag that hasn’t properly been closed, but I didn’t see any evidence of that.
Lastly, you might want to check your CSS to make sure all the properties are properly closed.
Forum: Themes and Templates
In reply to: Themes Problems on New Install of WP 2.6Well, WP mentioned in their blog that 2.6 wasn’t a change to theme or plugin files.
If you have the old version of the theme saved, maybe you could upload it instead and see if that fixes it.
If it doesn’t, could you post a link to your site?
Forum: Themes and Templates
In reply to: reliable theme searchI know the ones at upstartblogger and futurosity are very reliable and widget ready. The code isn’t too difficult to modify either.
I’ve never used any from briangardner.com.
Forum: Themes and Templates
In reply to: Move Date – CSSThanks. Sorry about that. I’ve seen it both ways.
Forum: Themes and Templates
In reply to: List-Style on the right?That way it does float left. I don’t believe you can put an image in the list-style area. You have to work around the system.
Putting list-style as none and signifying a background that doesn’t repeat is, CSS-wise, the closest you can currently get to changing the image that shows next to list items.
Forum: Themes and Templates
In reply to: CSS Browser IE ProblemI noticed that you have your DOCTYPE set at XHTML 1.0 Transitional. It’s not.
It’s possible that since you aren’t compliant with the validation that IE breaks the layout.
I also didn’t see any tags that hadn’t been closed. You might check your CSS to make sure those are all properly started with { and closed with }.
If that doesn’t fix it, you might want to try a test layout to work out the kinks.
Forum: Themes and Templates
In reply to: link color changeIf you could mark this as resolved that would be awesome.
Glad to help!
Forum: Themes and Templates
In reply to: Titles are unreadable in FirefoxFor starters, I can read your titles just fine in FF3.
I also see your archives list, which shows up fine. Same with your categories.
Did you notice the blank area right above the calendar. You might see what widget that is or where the blank spot is in your sidebar.php.
With that said, I don’t really see what the problem is.
Forum: Themes and Templates
In reply to: Themes Problems on New Install of WP 2.6Well, it looks like the new one is missing a <div>.
Replace that last bit of code with:
<div id=”content” class=”narrowcolumn”>
<div class=”post” id=”post-1′></div>
<div class=”post” id=”post-2′></div>
</div>
<div id=”sidebar”></div>
<div id=”footer”></div>
</div>I assume that last closing <div> is for something further above in the code.
Hopefully that helps…
Forum: Themes and Templates
In reply to: List-Style on the right?Now, this is just code from my theme, but it should show you how to do it.
ul ul li {
height: 1%;
list-style-type: none;
margin: 0 0 5px 0;
padding: 0 0 0 15px;
background: url(img/icon-arrow.gif) no-repeat;
line-height: 120%;
}The bolded part is where you put the image. It floats to the left of the text.
Forum: Themes and Templates
In reply to: 2 sidebars, how do i?A lot of it might have something to do with what theme you are using.
If you copied it, then I’m not exactly sure why it isn’t working.
I’m not too familiar with the code from line 20.
What theme are you using? I’d like to take a look.
Forum: Themes and Templates
In reply to: 2 sidebars, how do i?If you are using dynamic sidebars, that really isn’t the best way.
I’m not fantastic with php, but I don’t think that code is properly pulling what it needs to.
Forum: Themes and Templates
In reply to: reliable theme searchYou might want to take a look through themes.wordpress.net and see if there’s anything there that you like.
I love the themes over at https://upstartblogger.com and https://futurosity.com.
Forum: Themes and Templates
In reply to: How to output template tags without having a <p> enclose them?You could use divs <div> or spans <span> to get around using <p> and to design around it better.