I’m having trouble sorting out what the top bar is called… where you would put a phone number etc. I want to change the color of that bar only. I found the code which colors it, but I was hoping I could remove everthing but the specific bar. Which one is that called?
.header_color table, .header_color .widget_nav_menu ul:first-child > .current-menu-item, .header_color .widget_nav_menu ul:first-child > .current_page_item, .header_color .widget_nav_menu ul:first-child > .current-menu-ancestor, .header_color .pagination .current, .header_color .pagination a, .header_color.iconbox_top .iconbox_content, .header_color .av_promobox, .header_color .toggle_content, .header_color .toggler:hover, .header_color .related_posts_default_image, .header_color .search-result-counter, .header_color .container_wrap_meta, .header_color .avia-content-slider .slide-image, .header_color .avia-slider-testimonials .avia-testimonial-content, .header_color .avia-testimonial-arrow-wrap .avia-arrow, .header_color .news-thumb {
background: none repeat scroll 0 0 #D9FFD9;
}
Thanks,
– John
p.s. I used firebug to grab that. If there’s a better way to see the structure and know what it’s called, I would be grateful to find out. Trying to learn how to do all this!
Hi,
The selector use for the very top header is
#header_meta {
border-top: none;
box-shadow: inset 0px 0px 1px 0px rgba(0, 0, 0, 0.2);
z-index: 400;
min-height: 30px;
background: white;
}
If you want to remove it you can use this
#header_meta {
display: none;
}
Regards,
Ismael
Thanks a lot Ismael