- This topic has 2 replies, 2 voices, and was last updated 3 years, 1 month ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- The forum ‘How do I …’ is closed to new topics and replies.
Events Made Easy › Forums › How do I … › How to change look/css of #_LINKDNAME
Hello,
i would like to change the look of the appearance of the placeholder #_LINEDNAME. Unfortunately i can’t manage that.
I tried custom CCS as
a.eme_events_list {
font-size: 2.5em;
color: red;
}
But this does not work.
I appreciate any hint. Thanks in advance.
Cheers Chris
The class eme_events_list is on the ul, not on the a-element.
If you want to target the a-element inside that list, use:
ul.eme_events_list li a {
font-size: 2.5em;
color: red;
}
CSS is something you should learn to master, using a CSS-debugger like Firebug also helps (in firefox). Learn CSS here .
Hi Franky,
thank you for this quick advice … i promise to enhance my CSS skills 🙂
Cheers Chris