Quote:
Originally Posted by peugeot405
in addition.css
search for:
Code:
.threadbit .threadlastpost {
clear: right;
display: block;
float: left;
padding: 0.5% 0 0;
width: 33%;
}
and replace with:
Code:
.threadbit .threadlastpost {
clear: left;
display: block;
float: right;
padding: 0.5% 0 0;
width: 36%;
}
search for:
Code:
.threadlisthead span.threadlastpost {
padding-left: 0;
text-align: left;
width: 33%;
}
and replace with:
Code:
.threadlisthead span.threadlastpost {
padding-left: 0;
text-align: right;
width: 35%;
}
search for:
Code:
.threadlisthead span.threadinfo {
width: 50%;
}
and replace with:
Code:
.threadlisthead span.threadinfo {
width: 48%;
}
That should fix the issue.
|
Thank you so much!!! it did in-fact solve the issue!
Just one more quick question if i may: i'd like to make the replies column Bold, what's the best way of doing that (and changing other font styles)?
Cheers