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 »

[SOLVED] Display %cats only on Home Page


  #1  
Old Mar 14, 2012, 08:22 PM
bswb97
 
158 posts · Aug 2010
I want to show %pages on all pages EXCEPT the home page; for the home page, I want to use %cats.

That is, home displays %logo %cats and all the rest display %pages %logo

So, here's my current setup:

Header has %pages %logo %cats

To hide %pages on the home page, it was pretty simple enough:

body.home #menu1 {display:none;}

However, I'm having a trickier time with displaying %cats only on the home page. I'm calling %cats by default in the header info, so I figured I would 1) have to make the default display as none 2) override that on the just the home page to display. This is my CSS insert:

To hide %cats:
HTML Code:
#menu2 { 
	display:none;
}
To display %cats on the home page:
HTML Code:
body.home #menu2 {display:inline;}
The problem is that it is going with whatever comes second in the CSS insert rather than being case specific per body.home.

Would it be easier to use a PHP if statement around the %cats callout?
  #2  
Old Mar 14, 2012, 08:27 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
It would be easier to use a php if, but Wordpress now prevents themes from using the eval() function. This is how Atahualpa use to do it, but it had to be removed in order to keep the theme listed.

So you are stuck doing it the CSS way. Try adding an '!important' at he end of the 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 Mar 14, 2012, 11:55 PM
bswb97
 
158 posts · Aug 2010
!important wound up repeating the same all-or-nothing effects as the order.

However, I came up with a workaround.

HTML Code:
div#menu2.menu-home-menu-container {
	height: 100px !important;
	position: relative !important;
	top: -50px;
}


body.home #menu2 {
padding-top: 50px;
}
The height opens up the container to 100px. The position/top settings move it OFF the top of the screen, so it's not visible to the user. Then the body.home padding scoots it down 50px (within the container that now has a height of 100px) so it's visible at the top on the home page.

Not the ideal solution but it gets the job done.

Bookmarks

Tags
display menu on home page



Similar Threads
Thread Thread Starter Forum Replies Last Post
Any way to display the header on the home page only? RHCdG Header configuration & styling 11 Jan 9, 2015 04:07 AM
I use php to display home page as table Marfieta New Versions, & Updating 0 May 30, 2011 02:13 AM
How to rename "Home" title in the home page instead setting NOT to display "home"? akg Center area post/pages 6 Sep 30, 2010 07:33 PM
Home page to display multiple posts VisExp Center area post/pages 2 Sep 6, 2010 04:17 PM
[SOLVED] Display Specific Post on Home Page macky Center area post/pages 5 Jul 3, 2010 08:52 PM


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


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