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 » Header configuration & styling »

[SOLVED] Tweaking menu 2 tabs.


  #1  
Old May 13, 2011, 09:34 AM
2BRetired
 
50 posts · Jan 2011
I am trying to tweek my menu 2 tabs. After searching this site I could only find info on tweeking menu 1 in the "add html/css inserts" section.

I am trying to learn php but it is not going in as fast as I would like.

How do I change menu 2 settings. Tried to change div#menu1 to div#menu2 but nothing changed.
Could some one point me in the right direction.

Thanks Bob
  #2  
Old May 13, 2011, 09:43 AM
lmilesw's Avatar
lmilesw
 
10,176 posts · Jul 2009
Central New York State USA
Do you have a link to your site?
What do you want to change?
__________________
~Larry (CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
  #3  
Old May 13, 2011, 10:05 AM
2BRetired
 
50 posts · Jan 2011
Larry,
I am trying to give the menu tabs a tab feel not just a bar across page. Rounded corners etc I can tweek menu1 but I cannot find code for menu2.

Link
http://2bretired.com/

Thanks Bob
  #4  
Old May 13, 2011, 10:57 AM
lmilesw's Avatar
lmilesw
 
10,176 posts · Jul 2009
Central New York State USA
The code for menu1 with regards to round corners etc should be in ATO>Add HTML/CSS Inserts>CSS Inserts. You would just create a new CSS rule for menu2 and apply similar CSS.
__________________
~Larry (CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
  #5  
Old May 13, 2011, 11:29 AM
2BRetired
 
50 posts · Jan 2011
Larry,
As per my origional post I can adjust menu1 but how do I create a new css rule for menu 2. I am new to php.
Do I copy and past all of menu1 setting and past into ATO>Add HTML/CSS Inserts below menu1 and just change menu1 to menu2. Tried to change div#menu1 to div#menu2 but nothing changed.


Thanks, Bob
  #6  
Old May 13, 2011, 11:50 AM
lmilesw's Avatar
lmilesw
 
10,176 posts · Jul 2009
Central New York State USA
You don't need any php. This is all done with CSS. You will have to add a transparent background to menu2 and you may have to use !important after some CSS rules.
__________________
~Larry (CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.

Last edited by juggledad; May 13, 2011 at 08:47 PM.
  #7  
Old May 13, 2011, 12:02 PM
2BRetired
 
50 posts · Jan 2011
Larry, Thanks for your help so far, but I am not a programer or understand CSS. I am trying to learn just enough to be able to do simple tweeks.

So you are telling me this is a big HTML programing job. I have gone to the w3school.com not much help there.
Where is menu2 code to to put this transparent background on.

Confused beginner, Bob

Just got into ATA css.php and found menu1 as ul rmenu li if that is right what does menu2 look like.

Last edited by 2BRetired; May 13, 2011 at 12:28 PM.
  #8  
Old May 13, 2011, 12:38 PM
lmilesw's Avatar
lmilesw
 
10,176 posts · Jul 2009
Central New York State USA
This is not a BIG job but you do need to understand CSS a bit. To give you an idea here is some code from ATO>Add HTML/CSS Inserts>CSS Inserts that relates to menu 1
HTML Code:
/* Space between items of page menu bar */
div#menu1 ul.rMenu li, div#menu1 ul.rMenu li {
margin-right: 5px;
}
To change this to apply to menu2 as well you would use the following.
HTML Code:
/* Space between items of page menu bar */
div#menu1 ul.rMenu li, div#menu1 ul.rMenu li, div#menu2 ul.rMenu li, div#menu1 ul.rMenu li {
margin-right: 5px;
}
As you can see I just added a comma and pasted a copy of what was there and changed div#menu1 to div#menu2. You just need to do the same type of thing to all the items that relate to menu1 and you may want to change the border radius on the menu2 so you don't have a square border radius on the bottom. You currently have several radius lines so if you just use logic you will see that to change
HTML Code:
-moz-border-radius-topleft: 5px;
-moz-border-radius-topleft: 5px;
So that each corner is rounded you could just have one line like the following.
HTML Code:
-moz-border-radius: 5px;
CSS is not too difficult. You just have to look at for a bit to figure out what it is doing.
__________________
~Larry (CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
  #9  
Old May 13, 2011, 02:26 PM
2BRetired
 
50 posts · Jan 2011
Larry,
Thank you, thank you, it has been a great help pointing me in the right direction.
Since including
div#menu2 ul.rMenu li, the "Adjustments for the menu2 bars" showed up, have been playing around with it.
As yet can not get rid of the solid menu bar, tried inserting margin right with all the other margin settings but nothing changed.

Thanks, Bob
  #10  
Old May 13, 2011, 04:39 PM
2BRetired
 
50 posts · Jan 2011
Still got solid menu whatever I do although the menu changes shape when you hover.

OK put border around tabs and you can see the spacing and shape but I cannot remove the background color, I have tried changing background but it changes the whole menu including the background spacing between the tabs not just the tabs. The background color stretches across the whole page. I have been spinning my wheels all day I have been able to change shape of tags but could not see it.

Bob

Last edited by 2BRetired; May 13, 2011 at 05:52 PM.
  #11  
Old May 13, 2011, 09:35 PM
lmilesw's Avatar
lmilesw
 
10,176 posts · Jul 2009
Central New York State USA
You just have to keep playing with the CSS. Leaning how to use Firebug with Firefox is a big help.
__________________
~Larry (CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
  #12  
Old May 16, 2011, 01:45 PM
2BRetired
 
50 posts · Jan 2011
Problem solved, Removed the second menu bar and just added the Category Widget back.
My wife told me I was spending way to much time trying to learn CSS and told me to give it a rest as we have many more things to do such as SEO. It is no good making the site look wonderful is nobody comes by.

Managed to tweek the menu bar1 from information searched from this forum.

Thanks, Bob

I will eventually get around to learning CSS or if I ever got income from the site I would pay someone but alas no income.

Bookmarks



Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I create tabs above banner picture w/ tabs leading to different categories? EasyHiker Page & Category Menu Bars 6 Nov 27, 2010 05:22 PM
Help tweaking my menu: No Background Color!! stjohn Page & Category Menu Bars 10 Aug 19, 2010 04:35 PM
Menu Bar tabs chelan Page & Category Menu Bars 1 Jul 21, 2010 06:51 PM


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


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