Has anyone successfully created this:
It is a small task, but I have been trying to have the top logo bar only for custom links (to site pages, Twitter perhaps) and styles.
The code below has created a link, but I am unable to style the bar from the options or through CSS.
In funtions/bfa_header_config.php:
$logo_area .= '</td>';}
// END of title/description
$logo_area.='<a class="email-icon" title="Contact the Book Babes" href="http://thebookbabesinc.com/contact-the-babes/">Contact Us</a>';
Now the challenge is styling the background color of the entire logo_area table as a whole. I tried this first through the options panel for the logo area, which only created a bar below it.
So I gave the logo_area the class "topbar" in line 54 of bfa_header_config.php:
$logo_area = '<table id="logoarea" table class="topbar" cellpadding="0" cellspacing="0" border="0" width="100%"><tr>';
Now I am not having any luck styling it in the "CSS Inserts" through the WP admin:
.topbar {
background-color: #000000;
}
Any ideas guys? Do I need to be changing the "topbar" table class CSS on the actual style.php file? Or do I need to do this differently?