revolution slider in front of nav menu drop down

Posted in: Newspaper
Post count: 11

http://i62.tinypic.com/10ymb0j.jpg

anythning i can do?

also how can i change the color of the search button boarder as it is a bit hard to see against the white background

regards

Byron

Post count: 388

Without a live site it’s not possible for me to inspect element and see the exact CSS, but here goes.

Revolution slider problem:

.sf-menu {
  z-index: 2 !important;
  }

.rev_slider {
  z-index: 1 !important;
}

For the search bar, right-click and use inspect element. Find the input element and then find its class (or the class of the first container above it), then sub that in here:

.the-class-you-found input[type="text"] {
  border: 1px solid #777777 !important;

For example, if I were changing my Contact Form 7 “Your name” input, I would right click on it and find this:

http://www.screencast.com/t/B8Rfnfeuvr

In which case my CSS would be:

.wpcf7-form-control-wrap-your-name input[type="text"] {
  border: 1px solid #777777 !important;

Then change the hex code to whatever colour you want.

Post count: 6600

Hi,


@byron_shady
/ @TheMediumUTM
It’s enough just to set the rev slider’s z-index to 0, will do the job:

.td_revolution_slider {
z-index: 0;
}


@byron_shady

If you are referring to this: http://screencast.com/t/5PvSRIJleo just use this custom css in theme panel > custom css:

.header-search-wrap .dropdown-menu .btn {
border: 2px solid black;
}

If this is not it please let me know or follow @TheMediumUTM instructions and find the right class for that button.

Hope this helps!
Thanks @TheMediumUTM for your help!

Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newspaper’ is closed to new topics and replies.