Advertisement:

Author Topic: problem with oc-slider  (Read 1035 times)

elena2

  • Newbie
  • *
  • Posts: 13
problem with oc-slider
« on: February 08, 2014, 04:57:05 pm »
hi
please help me

after install slider , i have problem with login box , login box back of the slider !
please see attachment  image ...
(sorry for bad english !)

dev101

  • Osclass Hero
  • Hero Member
  • *
  • Posts: 2155
  • osclass.work
Re: problem with oc-slider
« Reply #1 on: February 08, 2014, 05:45:09 pm »
Hi asareza,

the issue is css related, particularly z-index property. First try to lower z-index value in your responsiveslides.css file

Code: [Select]
#sliders{
  clear: both;
  margin: 10px auto;
  position: relative;
  z-index: 9999;
}

experiment with rough values like 8000, 7000, 6000... first.

Second option, your theme looks like modified modern core, so on a 'blind guess' in you css file locate this line (around first 100 lines or so)

Code: [Select]
header #user_menu {
display: inline;
font-size: 11px;
position: absolute;
right: 30px;
top: 0;
text-align: right;
z-index: 9999;
}

Code might be different, but the idea is to add z-index property that is in higher value then gallery.

Regards