|
Post by blondeambition on May 20, 2007 10:22:16 GMT -5
Hey all, I am having issues with my posts. Instead of the old posts going underneath the new ones, they are going to the right side of the new posts. Is there something I'm missing in my code, or an option I've missed? Please help, this is driving me crazy and I think it looks horrible!! www.blondeambition.org
|
|
|
Post by jesper on May 20, 2007 11:34:11 GMT -5
Your css are repeating through your page, try placing it in the header template only. And i see your new post end up in #contentcenter, while your old post doesnt, makes me wonder how your templates are put together?
|
|
|
Post by blondeambition on May 20, 2007 15:14:51 GMT -5
thanks. i just ended up resetting everything and starting from scratch. it looks a little better now, but i'm still trying to figure out how to get the whole thing together without having to use frames. when i just try the image and greymatter in tables on one page, my logo ends up halfway down the page instead of staying at the top. annoying.  either way, thanks for your help 
|
|
|
Post by Carlos Phelps on May 20, 2007 18:56:47 GMT -5
If you would like your logo to stay in the top left corner just fix its position like so
<img src="images/leftlayout.png" style="position:fixed; left:0; top:0" width="524" height="495" />
you could also move it to the style sheet and you would get something like this in your CSS
#logo {position:fixed; left:0; top:0; width:524px; height:495px;}
and your XHTML would look like this
<img src="images/leftlayout.png" id="logo" />
then if you wrap the whole page in a <div> tag and set the text-indent you would have no need for a table or iframe.
|
|