Field widths via CSS

All style (template, theme and imageset) related questions for the new release; advice, feedback here please.
shiny601
Registered User
Posts: 1
Joined: Tue Feb 15, 2011 7:43 am

Re: Field widths via CSS

Post by shiny601 »

I simplely changed in content.css:

Code: Select all

ul.topiclist dt {
     ...
     width: 75%; /*You can change it to whatever you want, but make sure the left percentage is enough for the right columns like post,views and last post, Note that I only have two columns*/
        ...}

dd.posts, dd.topics, dd.views {
     width: 8%; 
     float: right; /*Added*/
      ...
         }

dd.lastpost {
	width: 15%; /*Changed. Make sure the three percentages in red color in total is no more than 100%*/
	float: right; /*Added*/
         ...
}
It works perfect for me.

Post Reply