Jump to content

WHMCS Navigation Bar CSS


Cybox

Recommended Posts

place this code at the end of http://your-website.com/templates/default/css/whmcs.css

.navbar .navbar-inner {
 border-radius: 0; /* remove the rounded borders from navbar */
}
.navbar-inner {
 background: #777; /* change navbar background color */
}
.navbar .nav > li > a {
 color: #FFF; /* change menu link color */
 font-family: Verdana; /* here you can change menu font */
}

Link to comment
Share on other sites

place this code at the end of http://your-website.com/templates/default/css/whmcs.css

.navbar .navbar-inner {
 border-radius: 0; /* remove the rounded borders from navbar */
}
.navbar-inner {
 background: #777; /* change navbar background color */
}
.navbar .nav > li > a {
 color: #FFF; /* change menu link color */
 font-family: Verdana; /* here you can change menu font */
}

Awesome, I'll give it a go now. Is there a list of fonts anywhere supported by WHMCS?

 

I was also wondering how to remove the captcha in the domain checker. I just removed the code but I still get this error

Link to comment
Share on other sites

place this code at the end of http://your-website.com/templates/default/css/whmcs.css

.navbar .navbar-inner {
 border-radius: 0; /* remove the rounded borders from navbar */
}
.navbar-inner {
 background: #777; /* change navbar background color */
}
.navbar .nav > li > a {
 color: #FFF; /* change menu link color */
 font-family: Verdana; /* here you can change menu font */
}

With the rounded borders, I'd like to add them so do I just increase the radius?

Link to comment
Share on other sites

Is there a list of fonts anywhere supported by WHMCS?

 

I was also wondering how to remove the captcha in the domain checker. I just removed the code but I still get this error

1- WHMCS use Ubuntu by default you can use any font you like.

2- the correct way to disable/remove the captcha security is from General Settings page see here.

3- to increase the radius use it as:

.navbar .navbar-inner {
 -webkit-border-radius: 10px;
 -moz-border-radius: 10px;
 -o-border-radius: 10px;
 border-radius: 10px;
}

this way you guarantee the same result in Chrome, FF, Opera, and Safari

Link to comment
Share on other sites

Hello Cybox,

 

Yes, if you increase the radius that should add it back to the navbar.

 

--Thanks

Thankyou ;)

 

- - - Updated - - -

 

1- WHMCS use Ubuntu by default you can use any font you like.

2- the correct way to disable/remove the captcha security is from General Settings page see here.

3- to increase the radius use it as:

.navbar .navbar-inner {
 -webkit-border-radius: 10px;
 -moz-border-radius: 10px;
 -o-border-radius: 10px;
 border-radius: 10px;
}

this way you guarantee the same result in Chrome, FF, Opera, and Safari

Awesome, Is there a default border size? As for the captcha security, I just want to disable it for the domain name checker.

 

Also in what file will I be able to find the size of the heading on the nav bar? Mine are looking very big at the moment :)

Edited by Cybox
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated