gamerfu
09-21-2008, 06:43 PM
In Style Manager I am trying to re-create/duplicate the "vbmenu_control" CSS function.
The links need to show up white and have all the same attributes as my "vbmenu_control" CSS function. I will be using and changing the new CSS function in Additonal CSS functions for my Navbar.
Navbar is the problem, link code keeps coming from the body css funtion. :(
Screen Shots attached.
Here is the "vbmenu_control" CSS function according to 'vbulletin-style.xml'.
a:7:{s:10:"background";s:11:"transparent";s:5:"color";s:7:"#FFFFFF";s:4:"font";a:3:{s:5:"style";s:4:"bold";s:4:"size";s:4:"11px";s:6:"family";s:78:"tahoma, verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif";}s:5:"EXTRA";s:48:"padding: 12px 6px 3px 6px;
white-space: nowrap;";s:6:"LINK_N";a:3:{s:10:"background";s:0:"";s:5:"color";s:7:"#FFFFFF";s:15:"text-decoration";s:4:"none";}s:6:"LINK_V";a:3:{s:10:"background";s:0:"";s:5:"color";s:7:"#FFFFFF";s:15:"text-decoration";s:4:"none";}s:6:"LINK_M";a:3:{s:10:"background";s:0:"";s:5:"color";s:7:"#FFFFFF";s:15:"text-decoration";s:9:"underline";}}
]]>
Here is the closest code I can get to the above ^
/*** transparent for navigation bar ***/
#nav_trans {
background-image: transparent;
color: #FFFFFF;
font-weight: bold;
font-size: 11px;
font-family: tahoma, verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
text-decoration: none;
padding: 12px 6px 3px 6px;
white-space: nowrap;
}
#nav_trans LINK_N a, #nav_trans LINK_N a:hover {
color: #FFFFFF;
text-decoration: none; }
The links need to show up white and have all the same attributes as my "vbmenu_control" CSS function. I will be using and changing the new CSS function in Additonal CSS functions for my Navbar.
Navbar is the problem, link code keeps coming from the body css funtion. :(
Screen Shots attached.
Here is the "vbmenu_control" CSS function according to 'vbulletin-style.xml'.
a:7:{s:10:"background";s:11:"transparent";s:5:"color";s:7:"#FFFFFF";s:4:"font";a:3:{s:5:"style";s:4:"bold";s:4:"size";s:4:"11px";s:6:"family";s:78:"tahoma, verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif";}s:5:"EXTRA";s:48:"padding: 12px 6px 3px 6px;
white-space: nowrap;";s:6:"LINK_N";a:3:{s:10:"background";s:0:"";s:5:"color";s:7:"#FFFFFF";s:15:"text-decoration";s:4:"none";}s:6:"LINK_V";a:3:{s:10:"background";s:0:"";s:5:"color";s:7:"#FFFFFF";s:15:"text-decoration";s:4:"none";}s:6:"LINK_M";a:3:{s:10:"background";s:0:"";s:5:"color";s:7:"#FFFFFF";s:15:"text-decoration";s:9:"underline";}}
]]>
Here is the closest code I can get to the above ^
/*** transparent for navigation bar ***/
#nav_trans {
background-image: transparent;
color: #FFFFFF;
font-weight: bold;
font-size: 11px;
font-family: tahoma, verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
text-decoration: none;
padding: 12px 6px 3px 6px;
white-space: nowrap;
}
#nav_trans LINK_N a, #nav_trans LINK_N a:hover {
color: #FFFFFF;
text-decoration: none; }