PDA

View Full Version : how to delete this line?


niadene
11-09-2009, 04:22 PM
how could i delete the line below the name..its not supposed to be there....

https://vborg.vbsupport.ru/external/2009/11/43.jpg

Lynne
11-09-2009, 05:16 PM
Find the class and then add text-decoration:none to it. (bigusername? or alt2? whichever you want)

niadene
11-10-2009, 12:32 AM
:(( i cant find it...help pls

ChopSuey
11-10-2009, 12:46 AM
postbit_legacy template

niadene
11-10-2009, 01:05 AM
postbit_legacy template

<a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]"><center>$post[musername]</center></a>

text-decoration:none <<<<is this the one i will add?

Can you tell me if how to add and where probably.

Lynne
11-10-2009, 01:13 AM
I would add it to the bigusername class in Main CSS for your style (look at the bottom section on that page and you will find .bigusername - or use the find function in your browser window to find it on that page)

niadene
11-10-2009, 01:17 AM
I would add it to the bigusername class in Main CSS for your style (look at the bottom section on that page and you will find .bigusername - or use the find function in your browser window to find it on that page)

Sorry for this post but im newbie for this...

/* ***** styling for 'big' usernames on postbit etc. ***** */
.bigusername { font-size: 13pt; }

/* ***** small padding on 'thead' elements ***** */
td.thead, th.thead, div.thead { padding: 4px; }

/* ***** basic styles for multi-page nav elements */
.pagenav a { text-decoration: none; }
.pagenav td { padding: 2px 4px 2px 4px; }

/* ***** de-emphasized text */
.shade, a.shade:link, a.shade:visited { color: #777777; text-decoration: none; }
a.shade:active, a.shade:hover { color: #FF4400; text-decoration: underline; }
.tcat .shade, .thead .shade, .tfoot .shade { color: #DDDDDD; }

/* ***** define margin and font-size for elements inside panels ***** */
.fieldset { margin-bottom: 6px; }
.fieldset, .fieldset td, .fieldset p, .fieldset li { font-size: 11px; }

where exactly i put that code...can you please teach me

Lynne
11-10-2009, 01:22 AM
.bigusername { font-size: 13pt;
text-decoration:none;
}


See if that works.

niadene
11-10-2009, 01:39 AM
.bigusername { font-size: 13pt;
text-decoration:none;
}


See if that works.

It really works...Thanks A lot!!!