HTML
- Kisai
- Goddess of Light
- Posts: 3276
- Joined: Fri Jan 01, 1999 4:00 pm
- Location: The Past, the Present, The future
- Contact:
Re: To the admins: adjusting poster info box width in topics
The poster width is already 25/75, stock it comes 22/78, reducing it results in people with higher resolution screens having to run their browsers maximized.
Setting it to fixed pixel width results in the profile box wrapping to below the post. So there's really not much point in playing with it further. compare the prosilverCG theme with the prosilver tweaks theme (which is pink)
Setting it to fixed pixel width results in the profile box wrapping to below the post. So there's really not much point in playing with it further. compare the prosilverCG theme with the prosilver tweaks theme (which is pink)
Re: To the admins: adjusting poster info box width in topics
I'd mentioned this before...
That should give fixed profile widths and strechy posts without the absurdities of floating percentage based stuff. I've used similar methods before, and it seems to be cross browser. I think there's an issue if the post is real short and and profile is real long, but that can probably be fixed easily.
Code: Select all
.post {
padding: 0 10px;
margin-bottom: 4px;
background-repeat: no-repeat;
background-position: 100% 0;
position: relative;
}
Code: Select all
.postbody {
padding: 0;
line-height: 1.48em;
color: #333333;
width: auto;
margin-left: 251px;
}
Code: Select all
.postprofile {
/* Also see tweaks.css */
margin: 0;
min-height: 100px;
color: #666666;
border-right: 1px solid #FFFFFF;
// min-width: 220px;
width: 250px;
display: block;
position: absolute;
top: 0;
left: 0;
}