Wordpress Themes - WP Forum at BFA
There will be no more development for Atahualpa (or any other theme), and no support. Also no new registrations. I turned off the donation system. I may turn the forum to read only if it gets abused for spam. Unfortunately I have no time for the forum or the themes. Thanks a lot to the people who helped in all these years, especially Larry and of course: Paul. Take care and stay healthy -- Flynn, Atahualpa developer, Sep 2021

Wordpress Themes - WP Forum at BFA » WordPress Themes » FAQ - Atahualpa » Header »

HowTo: Add some styling to the page menu bar


  #1  
Old Sep 28, 2011, 01:16 PM
mdmower's Avatar
mdmower
 
76 posts · Jul 2010
Missouri, USA
HowTo: Add some styling to the page menu bar

Update 05 Dec 2011: The css has been modified to work better with pages that have several levels of sub-pages. In my previous version, if a page was active, then all sub-pages in the menu were highlighted as active pages. This modified version should work for any number of sub-page levels. (Thanks to mimi for pointing this out)



This HowTo is intended to help you style the page menu bar with color gradients. Two examples are included for a light theme and dark theme. You don't have to follow my examples exactly, they're guidelines from which you can work.

Universal steps

Style & edit HEADER AREA
Make sure you have the page menu bar enabled; Configure Header Area should include %pages

MENU 1 (Page Menu) (Assuming everything on the page is at its default setting)
  1. Font Size & Face: 13px "MS Trebuchet", Arial, Verdana, sans-serif (Personal preference, adjust as desired)
  2. Transform text in Page Menu Bar?: none (Personal preference, adjust as desired)

Example 1: Light theme



MENU 1 (Page Menu)
  • Background color, Background color: Hover, Background color: Parent: Set these at appropriate colors to match your theme for old browsers which don't support gradients. They're fallbacks. (Example 1 uses F9F9F9, 000000, F9F9F9, respectively)
  • Border around all menu items: solid 0px transparent
  • Link Color: Choose a dark link color (Example 1 uses 000000)
  • Link Color: Hover: Choose a light hover color (Example 1 uses FFFFFF)
  • White or Black Arrows as Sub Menu Indicator?: black

Add HTML/CSS Inserts - Adjustable styles are marked by comments
Code:
/* The main horizontal bar's background */
#menu1 ul.rMenu-hor,
#menu1 ul.rMenu-ver {
  padding-left: 0px !important;

  /* Set this to Background Color in MENU 1 (Page Menu) - it is a fallback for older browsers */
  background-color: #F9F9F9;

  /* Vertical gradients, change colors according to (top,bottom) */
  background: -ms-linear-gradient(#F9F9F9, #E5E5E5) !important;
  background: -moz-linear-gradient(#F9F9F9, #E5E5E5) !important;
  background: -webkit-linear-gradient(#F9F9F9, #E5E5E5) !important;
  background: linear-gradient(#F9F9F9, #E5E5E5) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#F9F9F9', EndColorStr='#E5E5E5') !important; /* IE7,8,9 */
}

#menu1 ul.rMenu-ver {
  margin-top: 0 !important;
}

#menu1 .rMenu-hor a {
  font-weight: bold !important; /* Personal preference */
  line-height: 2.0em !important; /* This adjusts the height of the menu bar */
}

#menu1 .rMenu-ver a {
  line-height: 1.2em !important; /* This adjusts the height of items in the submenus */
}

#menu1 li {
  margin: 0 !important;
  background-color: transparent !important;
}

/* Hovered items and current page items get these backgrounds */
#menu1 a:hover,
#menu1 a:active,
#menu1 .current_page_item a:link,
#menu1 .current_page_item a:visited {

  /* Vertical gradients, change colors according to (top,bottom) */
  background: -ms-linear-gradient(#444444, #111111) !important;
  background: -moz-linear-gradient(#444444, #111111) !important;
  background: -webkit-linear-gradient(#444444, #111111) !important;
  background: linear-gradient(#444444, #111111) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#444444', EndColorStr='#111111') !important;
}

/* Sub-menu items which should not be highlighted */
#menu1 .current_page_item ul a:link,
#menu1 .current_page_item ul a:visited {
  background: transparent !important;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false) !important;

  /* Set this to the same color as Link Color in MENU 1 (Page Menu) */
  color: #000000 !important;
}

/* Sub-menu items which are being hovered */
#menu1 .current_page_item ul a:hover,
#menu1 .current_page_item ul a:active {

  /* Set this to the same color as Link Color: Hover in MENU 1 (Page Menu) */
  color: #FFFFFF !important;

  /* Vertical gradients, change colors according to (top,bottom) */
  background: -ms-linear-gradient(#444444, #111111) !important;
  background: -moz-linear-gradient(#444444, #111111) !important;
  background: -webkit-linear-gradient(#444444, #111111) !important;
  background: linear-gradient(#444444, #111111) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#444444', EndColorStr='#111111') !important;
}
Example 2: Dark theme



MENU 1 (Page Menu)
  • Background color, Background color: Hover, Background color: Parent: Set these at appropriate colors to match your theme for old browsers which don't support gradients. They're fallbacks. (Example 2 uses 000000, F9F9F9, 000000, respectively)
  • Border around all menu items: solid 0px transparent
  • Link Color: Choose a light link color (Example 2 uses FFCC33)
  • Link Color: Hover: Choose a dark hover color (Example 2 uses 000000)
  • White or Black Arrows as Sub Menu Indicator?: white

Add HTML/CSS Inserts - Adjustable styles are marked by comments
Code:
/* The main horizontal bar's background */
#menu1 ul.rMenu-hor,
#menu1 ul.rMenu-ver {
  padding-left: 0px !important;

  /* Set this to Background Color in MENU 1 (Page Menu) - it is a fallback for older browsers */
  background-color: #000000;

  /* Vertical gradients, change colors according to (top,bottom) */
  background: -ms-linear-gradient(#252525, #0A0A0A) !important;
  background: -moz-linear-gradient(#252525, #0A0A0A) !important;
  background: -webkit-linear-gradient(#252525, #0A0A0A) !important;
  background: linear-gradient(#252525, #0A0A0A) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#252525', EndColorStr='#0A0A0A') !important; /* IE7,8,9 */
}

#menu1 ul.rMenu-ver {
  margin-top: 0 !important;
}

#menu1 .rMenu-hor a {
  font-weight: bold !important; /* Personal preference */
  line-height: 2.0em !important; /* This adjusts the height of the menu bar */
}

#menu1 .rMenu-ver a {
  line-height: 1.2em !important; /* This adjusts the height of items in the submenus */
}

#menu1 li {
  margin: 0 !important;
  background-color: transparent !important;
}

/* Hovered items and current page items get these backgrounds */
#menu1 a:hover,
#menu1 a:active,
#menu1 .current_page_item a:link,
#menu1 .current_page_item a:visited {

  /* Vertical gradients, change colors according to (top,bottom) */
  background: -ms-linear-gradient(#F9F9F9, #E5E5E5) !important;
  background: -moz-linear-gradient(#F9F9F9, #E5E5E5) !important;
  background: -webkit-linear-gradient(#F9F9F9, #E5E5E5) !important;
  background: linear-gradient(#F9F9F9, #E5E5E5) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#F9F9F9', EndColorStr='#E5E5E5') !important;
}

/* Sub-menu items which should not be highlighted */
#menu1 .current_page_item ul a:link,
#menu1 .current_page_item ul a:visited {
  background: transparent !important;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false) !important;

  /* Set this to the same color as Link Color in MENU 1 (Page Menu) */
  color: #FFCC33 !important;
}

/* Sub-menu items which are being hovered */
#menu1 .current_page_item ul a:hover,
#menu1 .current_page_item ul a:active {

  /* Set this to the same color as Link Color: Hover in MENU 1 (Page Menu) */
  color: #000000 !important;

  /* Vertical gradients, change colors according to (top,bottom) */
  background: -ms-linear-gradient(#F9F9F9, #E5E5E5) !important;
  background: -moz-linear-gradient(#F9F9F9, #E5E5E5) !important;
  background: -webkit-linear-gradient(#F9F9F9, #E5E5E5) !important;
  background: linear-gradient(#F9F9F9, #E5E5E5) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#F9F9F9', EndColorStr='#E5E5E5') !important;
}
Additional Tips
Width of Menu Bar: You can control the width of the menu bar by including "width:80%;" in the CSS for #menu1 ul.rMenu-hor and #menu1 ul.rMenu-ver. Of course, change 80% to whatever width you prefer, or even specify something like 800px. You can align the bar left, center, or right. Below are some example CSS edits for each alignment. Choose one, don't blindly copy the whole thing. (Note that this is different from specifying %page-center or %page-right in the Atahualpa options for Configure Header Area. In that case the bar extends the entire width and only the menu items are shifted. You can actually use this tip in conjunction with that setting to move both the shrunk bar and the menu items around.)

Code:
/* Shrink width of bar and align left, right, or center - choose only one! */
#menu1 ul.rMenu-hor,
#menu1 ul.rMenu-ver {

  /* Align left */
  width: 80%;

  /* Align center */
  width: 80%;
  margin-left: auto;
  margin-right: auto;

  /* Align right */
  width: 80%;
  margin-left: auto;
  margin-right: 0;

  .... and so on with the rest of the CSS from the above examples ...
}
Attached Thumbnails
Click image for larger version

Name:	Example_1.png
Views:	7671
Size:	12.2 KB
ID:	1545  Click image for larger version

Name:	Example_2.png
Views:	7600
Size:	17.5 KB
ID:	1552  

Last edited by mdmower; Dec 5, 2011 at 01:38 PM. Reason: Modifications to fix appearance of sub-pages; Re-insert some !important
  #2  
Old Oct 10, 2011, 02:41 PM
Siya
 
32 posts · Oct 2011
man, thank you so very much! This is axctly what i was looking for. Ill make sure i donate something to you as soon as i have enough funds. thnx bro
  #3  
Old Oct 10, 2011, 02:45 PM
mdmower's Avatar
mdmower
 
76 posts · Jul 2010
Missouri, USA
Glad the guide is being found useful. I appreciate the feedback. No need for donations to me, but if you're happy with Atahualpa, use the donate link above to tell the dev and mods thanks!
  #4  
Old Oct 13, 2011, 03:33 PM
maydaohio
 
1 posts · Jul 2010
Columbus, OH
Send a message via Yahoo to maydaohio Send a message via Skype™ to maydaohio
Fabulous, just what I needed. Thank You!
  #5  
Old Oct 29, 2011, 08:02 AM
joe hark
 
168 posts · Feb 2009
What would be the code to change the page bar default color

background: #ffffff;

to an image, such as a gradient of a controlled height and width, left aligned? I need it to be 30px high and 900px wide.
  #6  
Old Oct 29, 2011, 04:16 PM
mdmower's Avatar
mdmower
 
76 posts · Jul 2010
Missouri, USA
Quote:
Originally Posted by joe hark
What would be the code to change the page bar default color

background: #ffffff;

to an image, such as a gradient of a controlled height and width, left aligned? I need it to be 30px high and 900px wide.
If you look at the images, you'll see they do have a gradient background. There is also a comment in the css about changing the height of the page menu bar.
  #7  
Old Oct 29, 2011, 06:56 PM
joe hark
 
168 posts · Feb 2009
First of, thank you for the reply. They are always seriously appreciated.

My question may not have been clear. I did see the information you suggested but I wanted to use an image, instead of code, to generate the bar, so that I could control the width of the bar, rather than allow it to span the width of the entire screen, which is what the code version does.

But, I did figure out an alternative that was so simple I amazed myself. I dropped %bar1 from the ATO, leaving just %image.

In Photoshop, I simply put the gradient bar image into the header image.

See the site under construction (and note the green gradient bar) at a temporary development server address: http://75.127.110.64/~seachang/

That will satisfy what I need for this project but I am still wanting to know what code would make the bar as requested, as an independent image that will replace the current "background: #ffffff;"

Thanks.
  #8  
Old Oct 31, 2011, 03:11 PM
Hells Bells
 
6 posts · Sep 2011
Hi mdmower, thanks for the awesome tutorial. I just have one question... (there's always one.) I'd like my page menu bar to extend to the edges of the screen, like my header, and as per Ata site http://crimsonleaf.co.uk/.

I've attached a screengrab of what I've achieved so far. The full width header was achieved with a repeated background gradient jpg in 'Style & edit HEADER AREA > Logo area: Styling', and I used the same jpg as the overall site background, repeated horizontally only.

I thought maybe I could use the same trick for the menu bar, e.g. use a gradient image for the menu bar (which is the bit I haven't figured out how to do yet), and then just edit the gradient image I used for the site background to include the menu bar as well?

I you have any ideas as to how I could a). extend the current coded menu bar to the screen edge, or b). re-create the menu bar with a gradient jpg/gif instead, I'd really appreciate it! Thanks. :-)
Attached Thumbnails
Click image for larger version

Name:	screengrab1.jpg
Views:	2664
Size:	120.4 KB
ID:	1596  
  #9  
Old Nov 11, 2011, 03:15 PM
mdmower's Avatar
mdmower
 
76 posts · Jul 2010
Missouri, USA
Quote:
Originally Posted by joe hark
I wanted to use an image, instead of code, to generate the bar, so that I could control the width of the bar
Method 1: No Gradient Images
You can modify the width simply by putting
Code:
width: 900px;
in the css rules for '#menu1 ul.rMenu-hor' and '#menu1 ul.rMenu-ver'. To get 30px height, change the line height in '#menu1 .rMenu-hor a' to something like 22px or roughly thereabouts (play around with it).

In the end your css code would look like:
Code:
#menu1 ul.rMenu-hor,
#menu1 ul.rMenu-ver {
  width: 900px;
  padding-left: 0px !important;
  background-color: #DDD !important;
  background: -ms-linear-gradient(#D8DAD7,#9EBB69) !important;
  background: -moz-linear-gradient(#D8DAD7,#9EBB69) !important;
  background: -webkit-linear-gradient(#D8DAD7,#9EBB69) !important;
  background: linear-gradient(#D8DAD7,#9EBB69) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#D8DAD7', EndColorStr='#9EBB69') !important;
}

#menu1 ul.rMenu-ver {
  margin-top: 0 !important;
}

#menu1 .rMenu-hor a {
  font-weight: bold !important;
  line-height: 22px !important;
}

#menu1 .rMenu-ver a {
  line-height: 1.2em !important;
}

#menu1 li {
  margin: 0 !important;
  background-color: transparent !important;
}

#menu1 a:hover,
#menu1 a:active,
#menu1 .current_page_item a:link,
#menu1 .current_page_item a:visited {
  background-color: #F9F9F9 !important;
  background: -ms-linear-gradient(#F9F9F9, #E5E5E5) !important;
  background: -moz-linear-gradient(#F9F9F9, #E5E5E5) !important;
  background: -webkit-linear-gradient(#F9F9F9, #E5E5E5) !important;
  background: linear-gradient(#F9F9F9, #E5E5E5) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#F9F9F9', EndColorStr='#E5E5E5') !important;
}
Method 2: Gradient Image Bar
To use a gradient image replace all of the 'background:' style modifiers in '#menu1 ul.rMenu-hor' and '#menu1 ul.rMenu-ver' with just one background-image line:
Code:
background-image: url('/wp-content/uploads/images/gradient_bar.png') !important;
where of course you need to replace the path in the URL to the actual image location. There is an extra challenge though, the background image will be applied to any drop-down menus you might create in the future, so you should probably set a flat color for drop menus by adding:
Code:
  background-image: none !important;
  background-color: #9EBB69;
to '#menu1 ul.rMenu-ver'.
In the end your code will look something like this:
Code:
#menu1 ul.rMenu-hor,
#menu1 ul.rMenu-ver {
  padding-left: 0px !important;
  background-image: url('/wp-content/uploads/images/gradient_bar.png') !important;
  background-repeat: no-repeat;
  width: 900px;
}

#menu1 ul.rMenu-ver {
  margin-top: 0 !important;
  background-image: none !important;
  background-color: #9EBB69;
}

#menu1 .rMenu-hor a {
  font-weight: bold !important;
  line-height: 22px !important;
}

#menu1 .rMenu-ver a {
  line-height: 1.2em !important;
}

#menu1 li {
  margin: 0 !important;
  background-color: transparent !important;
}

#menu1 a:hover,
#menu1 a:active,
#menu1 .current_page_item a:link,
#menu1 .current_page_item a:visited {
  background-color: #F9F9F9 !important;
  background: -ms-linear-gradient(#F9F9F9, #E5E5E5) !important;
  background: -moz-linear-gradient(#F9F9F9, #E5E5E5) !important;
  background: -webkit-linear-gradient(#F9F9F9, #E5E5E5) !important;
  background: linear-gradient(#F9F9F9, #E5E5E5) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#F9F9F9', EndColorStr='#E5E5E5') !important;
}
  #10  
Old Oct 31, 2012, 12:03 PM
TCoughlin
 
3 posts · Oct 2012
Where do we change this CSS? I would like to customize the header area on http://www.northshoreinline.com
  #11  
Old Oct 31, 2012, 12:41 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
add css to the 'ato->Add HTML/CSS Inserts->CSS Inserts' option
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #12  
Old Oct 31, 2012, 01:13 PM
TCoughlin
 
3 posts · Oct 2012
I guess I'm blind, I have no idea where to find this "ato->Add HTML/CSS Inserts->CSS Inserts"
  #13  
Old Oct 31, 2012, 01:32 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
Ato = Atahualpa theme options
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #14  
Old Oct 31, 2012, 06:20 PM
SharonJ's Avatar
SharonJ
 
644 posts · Sep 2010
Duncan BC Canada
In your dashboard, go to Appearance/Atahualpa Theme Options (ATO)
  #15  
Old Oct 31, 2012, 06:25 PM
SharonJ's Avatar
SharonJ
 
644 posts · Sep 2010
Duncan BC Canada
This is just a preference of mine, but I really don't like it when there are two lines in the navigation bar. I figure it should be one line, with perhaps another custom menu in the side bar if you needed it..

Another solution would be to re-think your navigation. Have an About Us item with a drop down menu including site map, sponsors, Facebook Feed and Privacy. That would bring it back to one line

p.s. Did you check your Facebook Feed page? It blows out the side of your template. Can you not set the width?
  #16  
Old Nov 1, 2012, 03:37 PM
TCoughlin
 
3 posts · Oct 2012
Thanks Sharon, the number of pages will be condensed to one navigation bar. I have to go through each page and consolidate a lot of the information.

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
Page menu bar: Styling sub menus unelma Page & Category Menu Bars 5 Nov 16, 2010 12:15 AM
Page Menu Bar Styling chair Header configuration & styling 1 Aug 1, 2009 06:06 AM
[SOLVED] Howto: Align page menu bar with left sidebar or opacity overlay width iroQuai Page & Category Menu Bars 1 Mar 7, 2009 05:01 PM


All times are GMT -6. The time now is 05:13 PM.


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