HTML

For discussions, announcements, non-technical questions and anything else comics-related or otherwise that doesn't fit in any of the other categories.
Post Reply
User avatar
Scyze
Regular Poster
Posts: 40
Joined: Sat Sep 01, 2007 4:35 pm
Contact:

HTML

Post by Scyze »

is pretty cool
Last edited by Scyze on Fri Jan 01, 2010 5:23 pm, edited 1 time in total.
Image

User avatar
Kisai
Goddess of Light
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

Post 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)

User avatar
C.w.
Regular Poster
Posts: 343
Joined: Wed Apr 05, 2006 10:04 pm
Contact:

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

Post 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.
Image
Other comics i've done
Webpage troubles? HTML Generator to the rescue.

Post Reply