Are you enjoying the extensions? Did you like the support? Help others decide.

Leave a review

file How can I change the color of the background?

More
11 years 6 months ago #955 by honeybunz
On the free version, every second item (even item) has a yellowish background. I would like to change this so that the background of every item is white. What do I change to achieve this?

Please Log in or Create an account to join the conversation.

More
11 years 6 months ago #958 by admin
Hello,
the background is gray for the odd items, as you have noticed. You just have to use CSS to modify that color (or use transparent). Add the following code to your template's stylesheet:
.odd {
background-color: white !important;
}

Olivier.

Please Log in or Create an account to join the conversation.

More
11 years 6 months ago #968 by honeybunz
I have a white color for my background for every odd numbered item and a yellowish color for every even numbered item.



I would like to make the even-numbered items white.

Please Log in or Create an account to join the conversation.

More
11 years 6 months ago #971 by admin
Hello,
if you look at the source code, you can see that there is a class 'even' attached to each even item, 'odd' attached to each odd item. Override the CSS class .even to change the background color, the same way I have suggested in the previous post.

Olivier.

Please Log in or Create an account to join the conversation.