Quote:
Originally Posted by peugeot405
You can do it that way, but it put's the box almost on the top.
Another way is:
find:
Code:
.threadbit .threadlastpost {
clear: right;
display: block;
float: left;
padding: 0.5% 0 0;
width: 33%;
}
replace with
Code:
.threadbit .threadlastpost {
clear: right;
display: block;
float: left;
padding: 0.5% 0 0;
width: 30%;
}
find:
Code:
.threadlisthead span.threadlastpost {
padding-left: 0;
text-align: left;
width: 33%;
}
replace with:
Code:
.threadlisthead span.threadlastpost {
padding-left: 0;
text-align: left;
width: 30%;
}
That way the tick nox stays centered.
|
Thanks
Ok tried it but as we have some long forum names it'll never work 100% so I altered the table sizes thanks to the code above but then also added this at the base to give us that leeway on longer thread names:
Code:
.threadbit .threadimod input {
top: -10px;
}