• Resolved supernova42

    (@supernova42)


    I want to change the font-weight, font size and colour etc of just the Forum Title using CSS.

    I tried
    div.entry-content div.forum-name
    { font-weight: 600; }

    and

    div.forum-name
    { font-weight: 600; }

    but neither worked.

    Does anyone know the hooks for this?

    Many Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Asgaros

    (@asgaros)

    Hello @supernova42

    Have you tried it with the !important-keyword behind the rule?

    .fourm-name a {
        font-weight: 600 !important;
    }
    Thread Starter supernova42

    (@supernova42)

    Hi Thomas
    Yes this works, but so does the other CSS code I’ve shown. The CSS code changes the Forum Title but unfortunately changes the sub-forum titles too. I want the sub-forum titles to remain as they are and just set the Forum Title to bold.
    Thanks again

    Plugin Author Asgaros

    (@asgaros)

    Hello again,

    adding those additional rule as well should help to keep the subforums-titles normal:

    .forum-subforums a, .forum-subforums b {
        font-weight: normal !important;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change font weight of Forum Title’ is closed to new replies.