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 » Montezuma Theme »

[SOLVED] Page Menu Size


  #1  
Old Oct 8, 2013, 10:43 AM
SigWS
 
29 posts · Sep 2012
I want to change the height of the menus underneath my header (cruciblegaming.com)

as far as I can tell I need to change:
li.page size, but I can't find it. Can it just be inserted in various? Or is something else creating this tag I am seeing with Chrome>Inspect Element?

Edit: to clarify, I want to reduce the distance from the top of the words in the menu to the underside of the header text.

Last edited by SigWS; Oct 8, 2013 at 10:47 AM.
  #2  
Old Oct 8, 2013, 01:44 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
play with this code
HTML Code:
/* Global link style */
#menu1 a, 
#menu1-smooth a { 
	font-family: 			'Yanone Kaffeesatz', sans-serif;
	font-size: 				22px; 
	font-weight: 			300;
	color: 					#000; 
	padding: 				12px 15px 20px 15px; 
	line-height: 			22px;
}
in menus_menu1.css
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #3  
Old Oct 8, 2013, 02:17 PM
SigWS
 
29 posts · Sep 2012
Quote:
Originally Posted by juggledad
play with this code
HTML Code:
/* Global link style */
#menu1 a, 
#menu1-smooth a { 
	font-family: 			'Yanone Kaffeesatz', sans-serif;
	font-size: 				22px; 
	font-weight: 			300;
	color: 					#000; 
	padding: 				12px 15px 20px 15px; 
	line-height: 			22px;
}
in menus_menu1.css
I've been all over that and I seem to get it trimmed down some but no matter what I do I can't get the white space to go away. Basically I want the orange bar that appears on hover over to just sit a pixel or two above the letters in the menu.

What is really odd about it, is when I am logged into my admin account, for a fraction of a second on page load it displays EXACTLY how I want it, then as soon as the wordpress menu bar across the top pops in, it moves to the position that it appears when when I am not logged in/checking from other browsers.

Example (what I am trying to achieve shown below by way of editing a screen shot):

Last edited by SigWS; Oct 8, 2013 at 02:31 PM.
  #4  
Old Oct 8, 2013, 04:34 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
try plaing with the line height in
HTML Code:
#menu1 a, #menu1-smooth a {
    color: #000000;
    font-family: 'Caudex',sans-serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 32px;
}
__________________
"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 8, 2013, 05:28 PM
SigWS
 
29 posts · Sep 2012
Quote:
Originally Posted by juggledad
try plaing with the line height in
HTML Code:
#menu1 a, #menu1-smooth a {
    color: #000000;
    font-family: 'Caudex',sans-serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 32px;
}
I was messing with that too, it seems to take the height from the bottom, underneath the menu text (reduces the distance between the menu text and the top of the breadcrumb div)
  #6  
Old Oct 8, 2013, 06:35 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
you have to keep digging. Go find this code
HTML Code:
#menu1 > li:hover, #menu1 > li.active, #menu1 > li.ancestor {
    border-top: 5px solid #D39300;
}
and cange it from 'border-top' to just 'border'.

Then in firebug go to the li and look at each child element andd the css associated with it and anthing that has a height change and see what it does. you should find it in a couple minutes.
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #7  
Old Oct 8, 2013, 07:07 PM
SigWS
 
29 posts · Sep 2012
Well. I give up.

Thanks for trying.
  #8  
Old Oct 9, 2013, 03:41 AM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
did you look at the <i> under the <a> that is under the <li>?
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #9  
Old Oct 9, 2013, 09:23 AM
SigWS
 
29 posts · Sep 2012
I've looked at/adjusted every thing in that sheet that I think would have made the adjustment I want.

I spent a good 2 hours trying to figure it out before I even posted here. I'm at the point now where I'll just live with it how it is.

Thanks for trying to guide me, but I'm missing something and after about 5 hours total playing with that sheet, I don't think it's going to jump out at me.
  #10  
Old Oct 9, 2013, 12:06 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
you need to change the height in
HTML Code:
#menu1 > li > a > i {
    display: block;
    height: 10px;
    margin: 0 auto 5px;
    width: 24px;
}
and the line height here
HTML Code:
.menu {
    line-height: 33px;
    list-style-type: none;
}
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #11  
Old Oct 9, 2013, 02:08 PM
lmilesw's Avatar
lmilesw
 
10,176 posts · Jul 2009
Central New York State USA
Alternatively you could use
HTML Code:
#menu1 li i {
    display: none !important;
}
to hide the <i>
__________________
~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 Oct 9, 2013, 03:55 PM
SigWS
 
29 posts · Sep 2012
Quote:
Originally Posted by juggledad
you need to change the height in
HTML Code:
#menu1 > li > a > i {
    display: block;
    height: 10px;
    margin: 0 auto 5px;
    width: 24px;
}
and the line height here
HTML Code:
.menu {
    line-height: 33px;
    list-style-type: none;
}
Quote:
Originally Posted by lmilesw
Alternatively you could use
HTML Code:
#menu1 li i {
    display: none !important;
}
to hide the <i>
Playing with the line heights |+ lmilesw suggestion of hiding the i got me close enough to where I want to be. Thanks!

Bookmarks



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Custom Top level menu size + span the menu accross the width of the page muthukumarp Page & Category Menu Bars 11 Dec 9, 2011 12:42 PM
[SOLVED] Page Menu: how do I increase the size of the menu item? rbiasiutti Page & Category Menu Bars 8 Oct 2, 2011 12:45 PM
Changing font size in drop down menu of page bar ftf79 Page & Category Menu Bars 2 Apr 28, 2011 12:50 PM
how to change size of page menu bar - via style sheet? mamboe29 Page & Category Menu Bars 10 Apr 20, 2010 01:36 PM
Background for Page Menu Bar and size iworks Page & Category Menu Bars 2 Oct 18, 2009 05:53 AM


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


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