- Posts: 6764
- Thank you received: 718
help styling rss feed in right column
-
trey-braid
- Topic Author
- Visitor
14 years 3 months ago #2949
by trey-braid
help styling rss feed in right column was created by trey-braid
milos can you help me style this module real quick... it is in the right column-- the module is called mod_thick_rss... right now the font is small, black and has bullets... what would i need to add to the template.css.css to change the color, size and omit the bullets...
thanks
trey
thanks
trey
Please Log in to join the conversation.
-
milos
Support Staff - Moderator
Less
More
14 years 3 months ago #2953
by milos
Replied by milos on topic Re: help styling rss feed in right column
What you need is FireBug plugin for Firefox. Then, when you enable it and learn how to use it, it would show you instantly what's the CSS file and CSS class of any element.
Please Log in to join the conversation.
-
trey-braid
- Topic Author
- Visitor
14 years 3 months ago #2955
by trey-braid
Replied by trey-braid on topic Re: help styling rss feed in right column
milos i am using firebug and i have css inspector as well... i am using style 1 so the links are set to black thoughout the site... the column i am trying to change the font/ link color is the right column- which is where the mod_thick_rss module is... that is what i need to style... can you help?
not so much the module styling--- how would i go about styling the right column only?
thanks
trey
not so much the module styling--- how would i go about styling the right column only?
thanks
trey
Please Log in to join the conversation.
-
milos
Support Staff - Moderator
Less
More
- Posts: 6764
- Thank you received: 718
14 years 3 months ago #2957
by milos
Replied by milos on topic Re: help styling rss feed in right column
Link to your site please?
Please Log in to join the conversation.
-
trey-braid
- Topic Author
- Visitor
14 years 3 months ago #2960
by trey-braid
Replied by trey-braid on topic Re: help styling rss feed in right column
Please Log in to join the conversation.
-
milos
Support Staff - Moderator
Less
More
- Posts: 6764
- Thank you received: 718
14 years 3 months ago #2963
by milos
Replied by milos on topic Re: help styling rss feed in right column
If you are using Firebug, you can see those RSS list is in UL with class "rssfeed_list". Also, each link in the list is LI element with class "rssfeed_item".
So what you can do?
You can add definitions for "ul.rssfeed_list" and "li.rssfeed_item" in the template_css.css file. There you can change whatever you like.
If some changes doesn't have effect, try adding "!important", in example "color:#fff !important".
So what you can do?
You can add definitions for "ul.rssfeed_list" and "li.rssfeed_item" in the template_css.css file. There you can change whatever you like.
If some changes doesn't have effect, try adding "!important", in example "color:#fff !important".
Code:
ul.rssfeed_list {
color:#fff !important;
}
li.rssfeed_item {
color:#fff !important;
}
li.rssfeed_item a {
color:#fff !important;
}
Please Log in to join the conversation.
Time to create page: 0.089 seconds