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 » Atahualpa 3 Wordpress theme »

[SOLVED] Changing page menu background to transparent...


  #1  
Old Oct 12, 2011, 01:05 PM
ARealpolitik's Avatar
ARealpolitik
 
130 posts · Jun 2010
Ata 3.5.1

I have wrestled with this before but was not successful. Tried everything based on what I have read here. What am I doing wrong?

http://www.theblogfarm.com/

I currently have the below in HTML/CSSInserts

div#menu1 ul.rMenu { background: transparent !important; }
div#bfa_page_menu, div#menu1 { background: transparent !important; }

I do have it placed in CSS Inserts. Is this wrong spot?

I see I could/should have posted this in the Gold Forum... oh well.

Last edited by ARealpolitik; Oct 12, 2011 at 01:19 PM.
  #2  
Old Oct 12, 2011, 01:45 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
where did you come up with the ID of 'bfa_page_menu'?

you need to set
HTML Code:
div#menu1 ul.rMenu li {
    background-color: transparent;
}
and

HTML Code:
div#menu1 ul.rMenu li.current_page_item a:link, 
div#menu1 ul.rMenu li.current_page_item a:active, 
div#menu1 ul.rMenu li.current_page_item a:hover, 
div#menu1 ul.rMenu li.current_page_item a:visited, 
div#menu1 ul.rMenu li a:hover {
    background-color: transparent;
}
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support

Last edited by juggledad; Oct 12, 2011 at 01:51 PM.
  #3  
Old Oct 12, 2011, 02:01 PM
ARealpolitik's Avatar
ARealpolitik
 
130 posts · Jun 2010
lol, from some page on this forum. I think I quit at that point...

Okay, will gladly try it but having a senior moment. Place in Inserts or edit code?
  #4  
Old Oct 12, 2011, 02:03 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
put it in CSS Inserts
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #5  
Old Oct 12, 2011, 02:09 PM
ARealpolitik's Avatar
ARealpolitik
 
130 posts · Jun 2010
tried it, didn't work. Should I remove the current color setting in ata>page menu bar?

Never mind, that didn't work either...

This is what is in CSS Inserts:

h1 { font-size: 34px; line-height: 1.2; margin: 0.3em 0 10px; }
h2 { font-size: 28px; line-height: 1.3; margin: 1em 0 .2em; }
h3 { font-size: 24px; line-height: 1.3; margin: 1em 0 .2em; }
h4 { font-size: 19px; margin: 1.33em 0 .2em; }
h5 { font-size: 1.3em; margin: 1.67em 0; font-weight: bold; }
h6 { font-size: 1.15em; margin: 1.67em 0; font-weight: bold; }

div#menu1 ul.rMenu li {
background-color: transparent;
}
div#menu1 ul.rMenu li.current_page_item a:link,
div#menu1 ul.rMenu li.current_page_item a:active,
div#menu1 ul.rMenu li.current_page_item a:hover,
div#menu1 ul.rMenu li.current_page_item a:visited,
div#menu1 ul.rMenu li a:hover {
background-color: transparent;
}

Last edited by ARealpolitik; Oct 12, 2011 at 02:20 PM.
  #6  
Old Oct 12, 2011, 02:23 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
oops, you also need
HTML Code:
div#menu1 ul.rMenu {
    background-color: transparent;
}
color is set at the <ul>, the <li> and the <a>

btw: this will make the hovers and active transparent also. If you want one of them set, remove the linee associated with it
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support

Last edited by juggledad; Oct 12, 2011 at 02:25 PM.
  #7  
Old Oct 12, 2011, 02:32 PM
ARealpolitik's Avatar
ARealpolitik
 
130 posts · Jun 2010
It appears to be working but my eyes are so bad and the colors so close I cant tell. It looks like maybe just the borders still have color. Let me know what it looks like on your screen.

http://www.theblogfarm.com/


Got it, could change the border to transparent on the page menu bar... thanks.

Last edited by ARealpolitik; Oct 12, 2011 at 03:01 PM.
  #8  
Old Oct 12, 2011, 03:10 PM
ARealpolitik's Avatar
ARealpolitik
 
130 posts · Jun 2010
Hate to show my ignorance but when I hover over the link the background color shows. Tried a couple things but did not work.

Help!

I do have the:

div#menu1 ul.rMenu li a:hover {
background-color: transparent;

Last edited by ARealpolitik; Oct 12, 2011 at 03:14 PM.
  #9  
Old Oct 12, 2011, 03:38 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
add in
HTML Code:
div#menu1 ul.rMenu li:hover,div#menu1 ul.rMenu li.sfhover {
background:transparent;
}
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #10  
Old Oct 12, 2011, 05:30 PM
ARealpolitik's Avatar
ARealpolitik
 
130 posts · Jun 2010
That did it... Fantastic, I would never have figured that out. You are a genius, or damn close.

Thanks

Bookmarks



Similar Threads
Thread Thread Starter Forum Replies Last Post
Transparent background menu items. how? Marco.s Header configuration & styling 1 Jun 21, 2011 01:01 PM
Menu Transparent Background - not working after fix shadowoflight Page & Category Menu Bars 5 Mar 27, 2011 05:26 AM
Page menu background not changing yunbeai Page & Category Menu Bars 15 Sep 7, 2010 11:04 AM
[SOLVED] Change Current Menu Item's Background to Transparent rnimchuk Header configuration & styling 2 Sep 15, 2009 05:12 AM
Transparent Menu Item Instead of A Background Color oz1 Page & Category Menu Bars 1 Jun 29, 2009 05:19 AM


All times are GMT -6. The time now is 04:06 PM.


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