Cybox Posted July 8, 2014 Share Posted July 8, 2014 Hello, I was wondering where to find the colour for the nav bar in the css!! I'm also wondering how to change the font for whmcs. Thanks. 0 Quote Link to comment Share on other sites More sharing options...
Cybox Posted July 8, 2014 Author Share Posted July 8, 2014 Hi, I found the nav bar styling in bootstrap.css. I also want to round off the nav bar /http://prntscr.com/40l53e instead of my /http://prntscr.com/40l4w1. How do I do that? Thanks! 0 Quote Link to comment Share on other sites More sharing options...
sentq Posted July 8, 2014 Share Posted July 8, 2014 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 */ } 0 Quote Link to comment Share on other sites More sharing options...
Cybox Posted July 8, 2014 Author Share Posted July 8, 2014 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 0 Quote Link to comment Share on other sites More sharing options...
Cybox Posted July 8, 2014 Author Share Posted July 8, 2014 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? 0 Quote Link to comment Share on other sites More sharing options...
WHMCS Ryan Posted July 8, 2014 Share Posted July 8, 2014 Hello Cybox, Yes, if you increase the radius that should add it back to the navbar. --Thanks 0 Quote Link to comment Share on other sites More sharing options...
sentq Posted July 8, 2014 Share Posted July 8, 2014 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 0 Quote Link to comment Share on other sites More sharing options...
Cybox Posted July 8, 2014 Author Share Posted July 8, 2014 (edited) 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 July 8, 2014 by Cybox 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.