How to get rid of the border in Navigation Carousel

stone13

Joined: 2006-04-04
Posts: 18
Posted: Tue, 2013-11-19 08:34

Hi,

how can i get rid of the border in the Navigation Carousel?
Allready changed the *-shadow settings in the skin.css to 0, but did not work.

For example here :
http://update.makro-tom.de/landschaft/baume/L_1_Suedeifel

Thanks
Tom

 
floridave
floridave's picture

Joined: 2003-12-22
Posts: 27300
Posted: Wed, 2013-11-20 01:36

Add

.carousel-thumbnail {
padding: 0!important;
}
.carousel-current {
padding: 0!important;
}

To the css, that should do the trick.
You might consider editing the classes in the modules source code to be able to style it a bit different.

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team

 
stone13

Joined: 2006-04-04
Posts: 18
Posted: Wed, 2013-11-20 07:53

Thanks again Dave!

i had allready changed to

Quote:
.carousel-current {
box-shadow: 0px 0px 0px #d7e1fa;
-moz-box-shadow: 0px 0px 0px #d7e1fa;
-webkit-box-shadow: 0px 0px 0px #d7e1fa;
padding: 0px; !important;
margin: 0

but that did not work. Now with your change everything works fine, thanks

Tom