cshoffmann 0 Report post Posted March 15, 2011 I am using the brandnav and have adding padding to bottom justify it with the inline logo. Now with the space above the menu list I would like to add text (not an image) of contact info or anything else. So, I set out to do so using hooks in the function.php file of base, but have not figure out what class to do this. In short, a content box (z-indexed)layered on top of the brandnav section. Here's a screenshot of the goal in mind: http://countywide.murwood.net/wp-content/uploads/2011/03/layer_front_of_brand_nav.png'>http://countywide.murwood.net/wp-content/uploads/2011/03/layer_front_of_brand_nav.png Site: http://countywide.murwood.net/ Any suggestions? Share this post Link to post Share on other sites
cmunns 16 Report post Posted March 15, 2011 You probably want to use the `pagelines_inside_top_brandnav` hook Share this post Link to post Share on other sites
cshoffmann 0 Report post Posted March 16, 2011 that is what I used, but I actually want to z-index I think so it "floats" in the padding space of the menu container. That is how a non-educated css person would describe it. Is that right? If you go to the site you will now see the Call Us text that I want to be inline with the logo. http://countywide.murwood.net Thanks for helping. Share this post Link to post Share on other sites
cshoffmann 0 Report post Posted March 16, 2011 I figured out what I was thinking. Here is how I did what you see now: In functions.php //add_action('pagelines_branding_icons_end', 'add_icons_to_brandnav'); add_action('pagelines_inside_top_brandnav', 'brandnav_content'); // function name function brandnav_content(){?> <div class="content-pad"; style="float: right; display:inline; font-weight: bold; position: relative; width: 175px; margin-top:20px; margin-right:0px; text-align: center; z-index:1;"> Call Us at (630) 365-341242W891 Beith RoadElburn, IL 60119 </div> <?php } Share this post Link to post Share on other sites