View Full Version : writing gone to the center not the side..


likeagun
07-15-2006, 03:04 AM
Hey,
I used a layout from LJlayouts.org, Followed the instructions, ect, Clicked okay, then looked back at my profile and instead of my blog being on the left it's in the middle and has totally messed up the layout, What can I do to move the writing?

Heres the link to see; http://iveseenlovedie.livejournal.com/



help would be much appreciated, thanks.

bourdelson
07-15-2006, 03:33 AM
Well, you have a lot of zero values that aren't followed by px, but I don't know if adding those in will help or not [you still should, though, so that it is a defined measurement].

I think what you need to change is the table classification in your overrides. Right now you have this:

table {
width:400px;
margin:0;
text-align:justify;}

But it's not classifying any margins. Try using this in its place, adjusting the numbers as needed and see if it works:

/* change these numbers, must add up to 95% or less*/
table {
width: 45%;
margin-left: 25%;
margin-right: 25%;
}

And you can give the table width an exact pixel measurement and then the margin-left and margin-right be percents that add up to approximately 95%. [I know it works, because that's what I do on my LiveJournal. :D]