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 » Page & Category Menu Bars »

Can see pages on menu bar but Unable to see categories menu on all pages


  #1  
Old Oct 11, 2010, 06:44 AM
ajinkya's Avatar
ajinkya
 
13 posts · Sep 2010
India
I can see
# NEW MENU 1 (Page Menu) and
# NEW MENU 2 (Category Menu) options in Atahualpa 3.5.3 theme

But i can see only pages above header image but not categories below it
I have also created Menu 2 after checking
"Recommended: Since you're using WP 3+: Use the new WP menu system, see Appearance → Menus on the left. Create a menu there and add it to Menu Location → Menu 2. Once you've done that this setting here and the next few settings become obsolete. (The Javascript animation and the style settings at the bottom of this page still work)" in NEW MENU 2 (Category Menu)

Whats wrong ?
My blog
  #2  
Old Oct 11, 2010, 07:36 AM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
did you go to dashboard->appearances->menu->theme locations and name your new menu?
The default menu1 in Atahualpa displays PAGES ONLY unless you override it by building your own menu and putting it in the above location
__________________
"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 12, 2010, 06:33 AM
ajinkya's Avatar
ajinkya
 
13 posts · Sep 2010
India
Cool
finally i figured it out and now both pages and categories are visible but do check out my BLOG404
i have set both pages and categories to same 13 pixels and width of sub menus to same 16
But yet the menu bar for page is bigger than categories
looks like this is default option there , how do i fix this ?
  #4  
Old Oct 12, 2010, 06:47 AM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
i don't see any sub menus
__________________
"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, 2010, 07:18 AM
ajinkya's Avatar
ajinkya
 
13 posts · Sep 2010
India
Ooops sorry for that
i meant menus !
in 1st menu [ for pages ]
and 2nd one [ for categories ]
I have implemented same width , same font for both of em , so that they ought to look exact
But the pages menu on top of my blog header image looks gr8 in height and size than category menu !
I want both of them to look same
like i wanna edit height and all that but cant find that option ...
  #6  
Old Oct 12, 2010, 07:30 AM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
Please export your settings and attach them to a reply (use the paper clip icon) so I can take a look
__________________
"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 13, 2010, 11:58 PM
ajinkya's Avatar
ajinkya
 
13 posts · Sep 2010
India
okie
here is txt files i exported
ata-blog404com-20101014.txt

Thanks
  #8  
Old Oct 14, 2010, 06:35 AM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
you had made changes in the CSS inserts, but the selectors were for 'menu1' which is the pages menu. The 'categories' menu is 'menu2' so you need selectors for them also. Copy your CSS inserts to a text file (for safe keeping) and try this instead
HTML Code:
h1, h2 {
	font-size:2.2em;
	line-height:1.364em;
	font-weight: normal;
}


div.widget ul li a:link,
div.widget ul li a:visited,
div.widget ul li a:active,
div.widget ul li a:hover {
	color: #005B9A;
	border-left: 0 !important;
	padding-left: 0 !important;
}

div.widget ul {
	list-style-type: none;
	color: #005B9A;
	border-left: 0 !important;
	padding-left: 0 !important;
}

div.widget ul li {
	display: list-item;
}

div.widget ul li a:hover {
	text-decoration: underline;
}

div.widget ul, div.textwidget {
	line-height: 1.2em;
}

#sidebar_widget_area_1 {
padding: 10px;
border-right:1px solid #ddd;
}

#sidebar_widget_area_2 {
padding: 10px;
border-left:1px solid #cccccc;
}




#advanced_text-5 {
padding: 10px;
background: #ffffff;
}

/*Page menu bar*/

div#menu2 ul.rMenu,
div#menu1 ul.rMenu {
	margin: 15px 0;
	border-width: 0 0 1px 0;
	letter-spacing: 2px;
	background-color: #ffffff;
}

div#menu2 ul.rMenu li a,
div#menu1 ul.rMenu li a {
	border-width: 1px;
	padding: 8px;
}

/* active item = current page */
div#menu2 ul.rMenu li.current_page_item a, 
div#menu2 ul.rMenu li.current_page_item a:active, 
div#menu2 ul.rMenu li.current_page_item a:visited,
div#menu1 ul.rMenu li.current_page_item a,
div#menu1 ul.rMenu li.current_page_item a:active, 
div#menu1 ul.rMenu li.current_page_item a:visited {
	background-color: #ffffff;
	border-bottom-width: 1;  
	border-bottom-color:white;
}

/*Subscribe button -- replace "page-item-27" with whatever css class your site is generating */
div#menu1 ul.rMenu li.page-item-27 {
	background:transparent url(http://warrior-coach.com/thesis/images/icon-rss.gif) no-repeat scroll 100% 50%;
	background-color: white;
	float: right;
	padding-right:16px;
	border:0;
}

div#menu1 ul.rMenu li.page-item-27 a {
	border:0;
}


div.rss-box {
position: relative; 
margin-top: -35px;
}
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support

Bookmarks

Tags
menu bar

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
want the website to not reload the categories and pages menu vishvadeep Header configuration & styling 2 Jan 23, 2011 06:14 PM
How to exclude category menu bar from certain pages? suzannlarsen Page & Category Menu Bars 2 Jul 2, 2010 12:44 PM
[SOLVED] Static Pages on the Category Menu Bar instead of Page Bar jkfly4 Page & Category Menu Bars 4 Mar 27, 2010 03:06 AM
How do I hide Horizontal Decoration Bar, Pages Menu, Categories Menu on certain pages sixfirs Atahualpa 3 Wordpress theme 0 Nov 19, 2009 05:13 AM
Pages and categories menu bars nrg Page & Category Menu Bars 0 Jun 5, 2009 05:04 PM


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


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