Wordpress Themes - WP Forum at BFA

Wordpress Themes - WP Forum at BFA (http://forum.bytesforall.com/index.php)
-   Atahualpa 3 Wordpress theme (http://forum.bytesforall.com/forumdisplay.php?f=2)
-   -   [SOLVED] How to change padding of top menu? (http://forum.bytesforall.com/showthread.php?t=5671)

shin Feb 2, 2010 07:58 AM

[SOLVED] How to change padding of top menu?
 
I want to change the padding of

PHP Code:

div#menu1 ul.rMenu li a:link, div#menu1 ul.rMenu li a:hover, div#menu1 ul.rMenu li a:visited, div#menu1 ul.rMenu li a:active 

I can't find in option area.

Could anyone tell me where I can change it please?

Thanks in advance.

juggledad Feb 2, 2010 12:39 PM

you will need to add a CSS Selector and rule to ATO->Add HTML/CSS Inserts->CSS Inserts

markzip Feb 5, 2010 08:57 PM

Possible for you to suggest code for this insert?

juggledad Feb 6, 2010 05:34 AM

Thanks for the donation, Try this for the menu - add this to ATP->Add HTML/CSS Inserts
->CSS Inserts
HTML Code:

/* ================================================ */
/* CSS to set line around menu area                */
/* ================================================ */
div#menu1 ul.rMenu {
        border: solid 1px #BF1E06;
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ================================================ */
/* CSS to set lines around vertical drop down      */
/* ================================================ */
div#menu1 ul#rmenu2 li ul {
        border-top: solid 0px #BF1E06;
        border-right: solid 1px #BF1E06;
        border-left: solid 1px #BF1E06;
        border-bottom: solid 1px #BF1E06;
}
/* ================================================ */
/* CSS to remove lines around each page item        */
/* ================================================ */
div#menu1 ul#rmenu2 li a {
        border: none 0px #BF1E06;
}
/* ================================================== */
/* CSS for setting menu padding - horizontal menu    */
/* ================================================== */
ul.rMenu li {
        padding-top: 0px;
        margin: 0px 0px 0px 3px;
        border-bottom: none 0px red;
}
/* ================================================== */
/* CSS for setting menu padding - vertical menu    */
/* ================================================== */
ul.rMenu-ver li {
        padding-top: 0px;
        margin-top: 0px;
        border: solid 0px #BF1E06;
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++ */


markzip Feb 7, 2010 08:46 PM

Thanks for this. Site owner has decided to go with top-nav only. Makes things simple for me!


All times are GMT -6. The time now is 07:18 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.