Quote:
Originally Posted by kkk333
Hi eSekar
in forumdisplay
by this order :
thread , thread starter , Replies , Views , last post
thanks
|
So in forumdisplay you want an "extra" column to show the thread starter, just after the thread title, is this correct ?
Quote:
Originally Posted by Fifth Dimension
This is a great style.....just wondering though -- is there an easy to get the "Thread Title, Username, and Last Post time" to align to the left in "forumhome" and also the same in 'threadbit."
Right now, Thread Title and Username are to the left, but the timestamp on the last post in the thread display is to the right.
Would like to line them up...Thanks.
|
Hi, Thread Title & username are already aligned left as you mentioned so I'm guessing you only need to align the timestamp, if that's the case please go to your additional.css and do the following:
Find:
PHP Code:
#eSekartable td.eSekarF4 {
background-color: #efefef;
text-align: right;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #333333;
width: 24%;
}
Change to:
PHP Code:
#eSekartable td.eSekarF4 {
background-color: #efefef;
text-align: left;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #333333;
width: 24%;
}
Additionally, you'll find a lot of alignments that can be changed in that CSS file to meet ur needs.
G`Luck.