Not sure how it might look on other computers, but how do I bring the "Responses" and the comments and everything down?
Right now it's overlapping the photo. Do I make it relative somehow? Is it a CSS or PHP issue?
Not sure how it might look on other computers, but how do I bring the "Responses" and the comments and everything down?
Right now it's overlapping the photo. Do I make it relative somehow? Is it a CSS or PHP issue?
Could do with a link :-)
Otherwise it's pure guesswork as every theme is different
Isn't it a matter of spacing or padding or something like that?
oh, for some reason I thought you wrote "you could do IT with a link"
Sorry I forgot...
http://www.tobynfriendz.com/2009/10/26/rosemead-oktoberfest-2009/dsc_0282/
Try adding
div.entry {overflow:auto;}
anywhere in style.css
Basically you've got floated elements (probably the image, floated left?) and they always mess up the layout unless you put overflow:auto in the containing element, which in this case is div class="entry"
Cool...that worked. Thanks.
Actually, a similar thing is happening on the main page. All of the posts start ramming into each other.
The overflow thing didn't seem to fix that. I guess it's a different thing?
All you can do is view source and then paste the code into the HTML validator here http://validator.w3.org/check to see if there's anything obvious.
Maybe paste the style sheet into the CSS validator here http://jigsaw.w3.org/css-validator/
If there's nothing immediately obvious, save the webpage onto your computer. Then start removing bits of the source code until something, somewhere, starts looking right.
Then figure out which bit of the source code you needed to remove to make it look right, and backtrack from there.
Probably a few hours work :-)
This topic has been closed to new replies.