inherit
tunesrcoolii@gmail.com
86185
0
Oct 3, 2013 8:48:20 GMT -8
tunescool
4,399
August 2006
tunescool
|
Post by tunescool on Dec 16, 2012 17:03:00 GMT -8
where can i get rid of this the hover goes over the rounded corner ive been in there for a long time adjusting padding with the menu and tables and i just cant get it
|
|
inherit
The Dream Crusher (Ret.)
164921
0
Apr 1, 2014 11:00:25 GMT -8
Tim Camara
Teach a man to fish, etc., etc.
1,721
March 2011
tcamara
|
Post by Tim Camara on Dec 17, 2012 17:55:27 GMT -8
I'm not sure exactly what you're trying to accomplish, but you can get rid of the hover by adding this line to your CSS file:
.popup_html .ui-menu { opacity: 0; }
|
|
inherit
tunesrcoolii@gmail.com
86185
0
Oct 3, 2013 8:48:20 GMT -8
tunescool
4,399
August 2006
tunescool
|
Post by tunescool on Dec 17, 2012 19:37:46 GMT -8
its not the hover itself, its something else
|
|
inherit
The Dream Crusher (Ret.)
164921
0
Apr 1, 2014 11:00:25 GMT -8
Tim Camara
Teach a man to fish, etc., etc.
1,721
March 2011
tcamara
|
Post by Tim Camara on Dec 18, 2012 12:06:06 GMT -8
The line in your CSS that includes this is wrong:
#nav-tree > li:first-child
the attributes currently look like:
border-radius: 0 0 10px 10px 0 0 0 0 10px 10px; -moz-border-radius: 0 0 10px 10px 0 0 0 0 10px 10px; -webkit-border-radius: 0 0 10px 10px 0 0 0 0 10px 10px;
and they should look like:
border-radius: 0 0 10px 10px; -moz-border-radius: 0 0 10px 10px; -webkit-border-radius: 0 0 10px 10px;
though if you're using LESS syntax, it should look like this instead:
.rounded-corners(0, 0, 10px, 10px);
I just quickly firebugged this, so I can't tell you specifically what line number this is.
|
|
inherit
tunesrcoolii@gmail.com
86185
0
Oct 3, 2013 8:48:20 GMT -8
tunescool
4,399
August 2006
tunescool
|
Post by tunescool on Dec 18, 2012 12:16:31 GMT -8
.rounded-corners(0, 0, 10px, 10px); this took it out and it works as normal now i never was in that line im sure but anyway thanks tim
|
|