<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>THE MOLITOR FORUMS &#187; Topic: Problem with CSS</title>
		<link>http://www.themolitor.com/forums/topic/problem-with-css</link>
		<description>THE MOLITOR FORUMS &#187; Topic: Problem with CSS</description>
		<language>en-US</language>
		<pubDate>Tue, 28 Apr 2026 13:47:05 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.themolitor.com/forums/search.php</link>
		</textInput>
		<atom:link href="http://www.themolitor.com/forums/rss/topic/problem-with-css" rel="self" type="application/rss+xml" />

		<item>
			<title>THE MOLITOR on "Problem with CSS"</title>
			<link>http://www.themolitor.com/forums/topic/problem-with-css#post-22922</link>
			<pubDate>Mon, 02 Sep 2013 13:17:14 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">22922@http://www.themolitor.com/forums/</guid>
			<description><p>You bet :-)</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>dgt on "Problem with CSS"</title>
			<link>http://www.themolitor.com/forums/topic/problem-with-css#post-22916</link>
			<pubDate>Mon, 02 Sep 2013 10:15:28 +0000</pubDate>
			<dc:creator>dgt</dc:creator>
			<guid isPermaLink="false">22916@http://www.themolitor.com/forums/</guid>
			<description><p>DOH!  I feel like such an idiot.  Thank you very much, Chris.  My apologies to have bothered you with something I should have seen earlier.  Moral of the story: no more website coding in the wee hours of the morning :-)</p>
<p>Thanks very much--that fixed it right up, of course.
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Problem with CSS"</title>
			<link>http://www.themolitor.com/forums/topic/problem-with-css#post-22908</link>
			<pubDate>Mon, 02 Sep 2013 08:46:29 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">22908@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>There's an error in your markup...</p>
<pre><code>#dropmenu li a:hover {
	text-decoration: none;
	background: rgb(88,88,88);
	color: #ffffff #important;
}</code></pre>
<p>...should be this...</p>
<pre><code>#dropmenu li a:hover {
	text-decoration: none;
	background: rgb(88,88,88);
	color: #ffffff !important;
}</code></pre>
<p>You had <code>#important</code> instead of <code>!important</code></p>
<p>Let me know if that works better.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>dgt on "Problem with CSS"</title>
			<link>http://www.themolitor.com/forums/topic/problem-with-css#post-22892</link>
			<pubDate>Sun, 01 Sep 2013 01:40:21 +0000</pubDate>
			<dc:creator>dgt</dc:creator>
			<guid isPermaLink="false">22892@http://www.themolitor.com/forums/</guid>
			<description><p>Good evening,</p>
<p>I've customized the menus on my B+M based site to make the text a little larger, adjust the colors, and change around the font face (I'm using separate Google Fonts for normal text versus headers).  The site is here: <a href="http://dantrimble.com" rel="nofollow">http://dantrimble.com</a>.</p>
<p>The colors are almost entirely what I'm looking for now.  The dropdown for menu items on the nav bar that have submenus now uses the same color as the triangle area that opens the sidebar on the page.  For my menus, I currently have only one that has submenu items--Topics.  So it uses that tealish color as the background, and white text for the individual menu items.  As the hover changes from item to item, I'm using a dark gray background and white text to highlight the currently hovered menu item.  And for the current page only, a light gray background color.</p>
<p>All perfect, except for ONE thing...   Notice that on my dropdown under Topics, the highlight works as I move from one item to the next.  White text, dark gray highlight color.  I want that SAME effect when I hover over the menu items on the main level -- Home, About, Topics, Contact, etc.  Currently, my CSS is giving me the background color in that scenario, but no matter what I do, it won't make the text color white when hovering.  Just leaves it as the default text color for those items (which is the same dark gray I'm using for the highlight color).</p>
<p>My code is below.  Note that I'm doing all customizations in a child theme, including the CSS--it's in the child's style.css.  I have, however, tried doing these CSS tweaks in the theme options CSS editor within wp-admin.  I have the same problem either way.</p>
<p>What am I doing wrong with this CSS--how do I get the text color to switch to white during a hover event for the 1st/top menu level?</p>
<pre><code>#navigation {width: 620px; float: left;}
#dropmenu {list-style:none; position:relative; width:100%; z-index: 400;}

#dropmenu li {list-style:none; position:relative; float: left; line-height: 20px; width: 160x; margin-left: 30px;}

#dropmenu li a {
	display: block;
	line-height: 22.5px !important;
	font-size: 16px !important;
	text-transform: uppercase;
	color: #585858 !important;
	font-weight: 400 !important;
}
#dropmenu li a:hover {
	text-decoration: none;
	background: rgb(88,88,88);
	color: #ffffff #important;
}

#dropmenu li ul {
	list-style:none;
	display:none;
	position:absolute;
	width:220px; z-index:300; top:20px; left: 0;
	background: #748494 !important;
	padding: 5px 0;
	/* border-style: dotted; border-width:1px; border-color: lightGrey;
	-moz-border-radius: 6px; */
}
#dropmenu li ul li {position:relative; margin: 0; width:220px;}
#dropmenu li ul li a {line-height: 30px; padding: 0 15px; color: #ffffff !important;}
#dropmenu li ul li ul {}

#dropmenu li:hover ul ul,
#dropmenu li:hover ul ul ul,
#dropmenu li:hover ul ul ul ul {display:none;}
#dropmenu li:hover ul,
#dropmenu li li:hover ul,
#dropmenu li li li:hover ul,
#dropmenu li li li li:hover ul {display:block;}
#dropmenu li.current-menu-item &#62; a,
#dropmenu li.current-menu-ancestor &#62; a {background: lightGrey !important; -moz-border-radius: 6px;}

#plusSign {position: absolute; width: 31px; height: 30px; right: 30px; top: 30px; z-index: 1000; background: url(images/plus.png) no-repeat left top; cursor: pointer;}
#plusSign.closeMe {background-position: bottom left}</code></pre></description>
		</item>

	</channel>
</rss>
