Hello
the background is different because the have 2 different CSS class:
- odd
- even
so that they show differently when listing
- in this case they already have some black spacing between them so the different background seems unnecessary
Edit/create this file:
templates/yourJoomlaTemplate/css/flexicontent.css
and add:
To force same background
Code:
body .carousel.mod_flexicontent_wrapper .mod_flexicontent .mod_flexicontent_featured_wrapper.odd,
body .carousel.mod_flexicontent_wrapper .mod_flexicontent .mod_flexicontent_standard_wrapper.odd,
body .carousel.mod_flexicontent_wrapper .mod_flexicontent .mod_flexicontent_featured_wrapper.even,
body .carousel.mod_flexicontent_wrapper .mod_flexicontent .mod_flexicontent_standard_wrapper.even {
background-color: white;
}
To change color of letters use this CSS
Code:
body div .mod_flexicontent_wrapper .fcitem_text {
color: #000000; /*black*/
}
for other CSS please use firebug to find what you need and add then add them to the above file
NOTE the carousel template of module gets improved in v2.1.3 final
- can use paging and page bullets
- can use fading instead of scrolling
- last page is always full (will not show only 1 item)
- responsive to width, if you resize then items per page are recalculated
- can use title+desc as tip or title below the thumbnails
- styling improvements
- other ...
Regards