|
CSS styling of the Slick RSS module
To change color of the mouseover function in the Slick RSS newsfeed module, you need to use the global CSS classes used in Joomla!
These CSS classes is defined in your template CSS file located in:
Joomla-root/templates/YourTemplate/css/
Open the file template_css.css and look for the classes mentioned below. If you can't find them, just add them.
You can copy the definitions below, and paste them into your template.css ..then change the colors and styling to fit your template.
.tool-tip {
float: left;
color: #333333;
background-color: #becddd;
border:2px solid #364148;
opacity:.95;
filter: alpha(opacity=95);
-moz-opacity: 0.95;
padding: 5px;
max-width: 200px;
margin: 5px;
}
.tool-title {
padding: 0;
margin: 0;
color: #000000;
background-color: #96aeca;
opacity:.95;
filter: alpha(opacity=95);
-moz-opacity: 0.95;
font-size: 100%;
font-weight: bold;
padding: 5px;
margin: -5px;
}
Slick RSS also has some specific classes that you can use to finetune your styling:
.slick-rss-item
.slick-rss-item-desc
.slick-rss-desc
.slick-rss-img
.slick-rss-list
.slick-rss-container
You can download the Slick RSS here:
|