PDA

View Full Version : Remove the tables rows from postbit


Psyd0x
01-02-2015, 05:08 PM
how can i remove the rows background from postbit:

https://vborg.vbsupport.ru/external/2015/01/46.png

the white

ozzy47
01-02-2015, 08:57 PM
As that is not a part of the default style, would need a link to the page to see the css used.

Psyd0x
01-03-2015, 01:59 AM
<a href="http://www.ymarket.org/ymarket-s-news-and-announcements/528-offical-ymarket-forum-rules.html#post1151" target="_blank">http://www.ymarket.org/ymarket-s-new....html#post1151</a>

ozzy47
01-03-2015, 02:17 AM
Try adding this to your additional.css template.

.userinfo_extra dd {
background: none repeat scroll 0 0 transparent !important;
}

Psyd0x
01-03-2015, 02:32 AM
Thanks.

How can i change the font answer color (the count) there and remove the stroke

ozzy47
01-03-2015, 02:59 AM
Add this.

.postbit .userinfo_extra dl dd {
color: orange !important;
}For the Vouches color, I think that is hard coded, look in your templates for <font color="#8bafaf"> or #8bafaf and for the number look for, <font color="green">

Psyd0x
01-03-2015, 04:45 AM
Thanks now i need only remove this table you know how?

Seven Skins
01-03-2015, 09:59 AM
Try this:

.userinfo_extra dd {
border: none !important;
}

ozzy47
01-03-2015, 10:37 AM
Yep, that would do it. :)