(Untitled)

Aug 01, 2005 14:43

blabla, html question. (yes, whenever an exam is getting nearer i just have to play around with my layout). with the generator layout, is there any universal way to make the content table, you know with your entries and stuff, exactly as wide as the header picture, always, no matter which browser or screen resolution or whatever it is viewed in? ( Read more... )

Leave a comment

Comments 10

isilwen August 1 2005, 13:25:28 UTC
You probably have something like this in your overrides box or style, right?

body {
margin-top: 200px !important;
background-image: url(http://pics.livejournal.com/isilwen/pic/000kp9dw) !important;
background-repeat: no-repeat !important;
background-attachment: scroll !important;
background-position: 50% 30px !important;
}
/* change these numbers, must add up to 100%*/
table {
width: 700px;
margin-left: *;
margin-right: *;
}

/* the width value used here should be the same as the width value you've used above, minus the amount you want the entries indented (in this example, 5%), the margin-left and margin-right values MUST be the SAME as above.*/
div table {
width: 700px;
margin-left: *;
margin-right: *;
}

/* do NOT change these numbers */
table table {
width: 100%;
margin:0;
}
table table table {
width: auto;
}

This is the override text of ringcon, and I chose it because it's a similar layout structure as your journal. The tricky parts are those that I ( ... )

Reply

sternentochter August 1 2005, 14:09:12 UTC
ah, that's interesting. i think that worked, THANK YOU! you are a genious. :D it produced other problems though (probably because i deleted things i shouldn't have deleted) but i got it all right now. my override box is a mess. html (and css and whatever) is not for me.

Reply

isilwen August 1 2005, 14:22:59 UTC
Hehe. Yeah, I know it's a complicated mess... by now, when I see html, I have a pretty good idea what does what, but when there's an error, it's soo difficult to find... :/

For example, I think at the moment your margin-top is not existant, because the tables start up there, not under your picture ;)

Reply

isilwen August 1 2005, 14:25:08 UTC
Oh, heh! Now that is funny.

In IE, your layout looks like - I think - you want it to look. But in firefox, it looks totally different. O_o

Reply


Leave a comment

Up