PDA

View Full Version : Username HTML Markup: How can i change the maximum input?


EvilKitty
08-19-2007, 08:12 PM
If i enter the html...

<span style="color: #1d1d1d; background-color: #c0260a; font-style: italic;">

Everything works fine, but as soon as i want to display my name like...

<span style="border: 1px solid black; color: #1d1d1d; background-color: #c0260a; font-style: italic;">

(Note: I added a border)

It cuts off the end - does anyone know where i can go (Probably in myphpadmin) to extend the input for that?

Opserty
08-19-2007, 10:59 PM
Give it a class like:

<span class="uname_cust_markup">....

Then got to Main CSS in the Style Manager and in the textarea at the very bottom of the page add the CSS like this:


.uname_cust_markup {
border: 1px solid black;
color: #1d1d1d;
background-color: #c0260a;
font-style: italic;
}

EvilKitty
08-20-2007, 04:06 AM
Of course, duh - thanks, i really should have thought of that. :D