Hi Miguel Franchi,
Please open the style_top.css file in "your_site/modules/mod_yt_k2ajax_tabs/assets", finding:
#tabtop-container .tabs-content-top {
-moz-border-bottom-colors: none;
-moz-border-image: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
background: none repeat scroll 0 0 #FFFFFF !important;
border-color: #D25A0B;
border-right: 1px solid #D25A0B;
border-style: solid;
border-width: 5px 1px 1px;
}
change to:
#tabtop-container .tabs-content-top {
-moz-border-bottom-colors: none;
-moz-border-image: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
border-color: #D25A0B;
border-right: 1px solid #D25A0B;
border-style: solid;
border-width: 5px 1px 1px;
background: none repeat scroll 0 0 your color!important;
}
----------------------------
#jCarouselLiteDemo .carousel {
background: none repeat scroll 0 0 #FFFFFF;
margin: 0;
position: relative;
}
change to:
#jCarouselLiteDemo .carousel {
background: none repeat scroll 0 0 your color;
margin: 0;
position: relative;
}
Example: your color as #000,....
Thanks