• Resolved anandaxp

    (@anandaxp)


    Hi,

    just installed & testing the forum. I wish to know if there is a way to remove the word “Forum” which shows on top of bread crumbs or to replace it with my site name. thanks in advance

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

    (@asgaros)

    Hello @anandaxp

    You can easily remove it with CSS.

    #af-wrapper .main-title {
        display: none;
    }

    But keep in mind that this headline is also used for forum- and topic-titles. Search engines are using those headlines to index your site correctly. So dont be surprised when this will have some side-effects.

    Thread Starter anandaxp

    (@anandaxp)

    Thank you. I will let it be as it is then.

    Rather than hide this title, I would like to change the color to tie up with my theme colors. I can make the title disappear using the CSS provided but I cannot change the color. I have tried

    #af-wrapper .main-title {
    text-color: red;
    }

    but it does not work. Please advise how to change the color.

    Hi @supernova42

    .page-id-8 .entry-title {
        display: none;
    }

    8 = id page
    entry-title = class

    • This reply was modified 7 years, 9 months ago by Yworld.
    Plugin Author Asgaros

    (@asgaros)

    Hello @supernova42

    Try this instead:

    #af-wrapper .main-title {
        color: red;
    }
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Remove “Forum” word from the forum’ is closed to new replies.