Link to home
Start Free TrialLog in
Avatar of eli290
eli290

asked on

CSS fix for drop down

I have a site that I am working on and I cant figure out where to make a simple change... I have a drop down menu that has a gray overlay when you roll over the selection and then the dropdown appears. If you look at http://www.brillianteventplanning.com/nyc-wedding.html the services menu item is correct and the About is not. I want to mimic the services dropdown... There is a dropdown.css that I have been working with. I have attached the code from that file. Also have attached the style.css. Any help is greatly appreciated
dropdown.css
style.css
ASKER CERTIFIED SOLUTION
Avatar of Kyle Hamilton
Kyle Hamilton
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of eli290
eli290

ASKER

Ok  I did what you said but it didnt work. Here is the updated dropdown.css file to show my changes

Also on the About link this is what I did,

On the menu I added the class to the url within wordpress which didnt work and then I added it to the optional css class section on the menu which also didnt change anything
dropdown.css
you have to add the class to the link in the html, just like the services link. it wont work otherwise.
Avatar of eli290

ASKER

To be honest I am not really sure where to put that. These are all PHP files since it is a wordpress site.
You could also apply the css globaly to all menu items:

#main-menu > li:hover a{
  background: url(../images/menu_services.png) no-repeat top !important;
}
Avatar of eli290

ASKER

Yes that worked however I dont really want to do that for all menu items. Only for the drop downs :(

Do you know where I could add that on just for the about page?
then you need to do what I initially posted, and add the class to the link. How was the class added to the services link?
Avatar of eli290

ASKER

That I am not sure about. I didnt create this site, I was only asked to make a few changes after the fact. Of course the developer is nowhere to be found so I am trying to do this blind...
Avatar of eli290

ASKER

I am not sure if this helps but i believe in the dropdown.css line 65-92 are the menu items. I had to change li.m-7 to left justify the drop down menu items on the about link
You can use m-7 to target the about link, if you want. But if later you decide to change the order of the links, you'll also have to change that too.

#main-menu > li.m-7:hover a{
  background: url(../images/menu_services.png) no-repeat top !important;
}

Open in new window

Avatar of eli290

ASKER

Ok I did that and it sort of worked. This site is so screwy. There are 3 different sections...

http://www.brillianteventplanning.com/nyc-wedding.html

http://www.brillianteventplanning.com/nyc-proposal.html

http://www.brillianteventplanning.com/nyc-events.html

The wedding and proposal sort of work but it added another box in the drop down. And on events it doesnt show up at all.
Avatar of eli290

ASKER

I see why it isnt working on events because it is in the m-3 spot on that section
Avatar of eli290

ASKER

I also think the reason why it is funky is because the size of the image being used is 109 wide and in the dropdown.css file I see

a.top_menu_link-2 {
 width:109px;
 text-align:center;

Open in new window


a.menu-service {
 width:109px;
 text-align:center;

Open in new window

sounds like you can probably figure it out from here. its a shame the whole menu has to be so convoluted, but thats the price of working with a framework.
Avatar of eli290

ASKER

I figured out what the problem is but I am not sure how to fix it... I have been working with wordpress for a while now and have never had an issue like this before.
Avatar of eli290

ASKER

Ok i got the tabe to show by creating a copy of the menu_services.png and naming it menu_about.png. Then changing line 121
#main-menu > li.m-7:hover a{
  background: url(../images/menu_about.png) no-repeat top !important;

Open in new window


However for some reason it is showing another box to the right. Also when you roll over the About tab it turns red but turns grey again once you move your mouse to a sub menu item. How would I keep it red when it is dropped down?