Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1377679

    Good morning!

    We have made text links bold and colored on a website (a school newspaper).
    But: text links should not be bold and colored if they are in a bullet list.

    How according to the CSS code for bullets and bullets text if they should have default color and default decoration?

    Many greetings and happy new year!
    Susanne

    #1377738

    Hey Susanne,

    Please try this in Quick CSS:

    li a {
      font-weight: normal; 
      color: inherit;
    }

    Best regards,
    Rikard

    #1377798

    Hey Rikard,
    unfortunately this does not work; they are still colored.
    Alternatively, would it be possible to assign the enumerations to h6, for example?

    best regards,
    Susanne

    #1377831

    if you only like to influence both font-weight and color this is possible – and to give better advice a link would be nice.
    Do you concern to IconList Small ? Link

    #top .av_iconlist_title {
      font-weight: normal !important
    }

    ______
    if you like to have different bullet point color than the font color on lists in text-block element …
    see here https://kriesi.at/support/topic/change-colour-of-bullet-points/#post-585297

    there is no list-style-type-color in css3 nor css4 !

    The trick is to hide those bullits and replace them by a selectable pseudo content

    #1377857

    Hi,

    Thanks for helping out @guenni007 :-)

    Best regards,
    Rikard

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.