Page 1 of 1

HTML

Posted: Sun Mar 02, 2008 10:38 pm
by Scyze
is pretty cool

Re: To the admins: adjusting poster info box width in topics

Posted: Fri Mar 07, 2008 4:37 am
by Kisai
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)

Re: To the admins: adjusting poster info box width in topics

Posted: Fri Mar 07, 2008 9:36 am
by C.w.
I'd mentioned this before...

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;
}
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.