Events Made Easy Forums How do I … How to change look/css of #_LINKDNAME

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #63243
    Anonymous
    Inactive

    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

    #63244
    Franky
    Keymaster

    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 .

    #63246
    Anonymous
    Inactive

    Hi Franky,

    thank you for this quick advice … i promise to enhance my CSS skills 🙂

    Cheers Chris

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘How do I …’ is closed to new topics and replies.
Scroll to Top