PDA

View Full Version : username & password customizing


Michael.A
07-20-2010, 01:43 PM
ok am trying to customize the text bar where you type ur username and password, where can i adit the css for that and if anyone knows a good site to help me get this done

trying to make this
https://vborg.vbsupport.ru/attachment.php?attachmentid=119843&d=1279637258

look like that
https://vborg.vbsupport.ru/attachment.php?attachmentid=119842&d=1279637258

James Birkett
07-20-2010, 05:50 PM
That just looks like the text box has a border-radius (CSS3) attribute as well as some background colouring.

I'm unsure about the template, possibly the header template if the login displays on every page.

vBulletin Options -> General Settings -> Add Template Names In HTML Comments

Now view the source, find the login box, then scroll up and look for the first piece of code that looks like this:
<!-- BEGIN TEMPLATE: templatename -->

Now go to that template and edit to your heart's content.

Michael.A
07-21-2010, 06:13 AM
ya man it is in the header template thats how i made the login box that ur looking at the first one, but here is the thing what i need is how to make it look like that using css3.

James Birkett
07-21-2010, 08:38 AM
ABABA9
The CSS is:

background: #ABABA9;
border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;


Looks like 3 pixels, could be 1,2,4.