BuddyBoss Home – Web Support Forums Solutions Social Learner Headings Colors v. Text color socialearner

Viewing 14 posts - 1 through 14 (of 14 total)
  • Question

    #57188
    @crowdsparks

    Hello!

    I am having the same problem as previous user post ticket #55063.
    I want to Headings Colors to be white color and Text color to be black. But when I change heading color to white, text color also changes to white.

    Your suggestion was to add CSS codes inside child theme’s custom css option:

    1) Course Title
    .single-sfwd-lessons header.entry-header h1 {
    color: yellow !important;
    }

    2) Title Bar (Menu)
    .header-inner .left-col .header-navigation ul li a {
    color: yellow !important;
    }

    But when I go to public_html/wp-content/themes/social-learner there is 3 css files:
    custom.css (which is empty)
    main.css (i can`t find the css you provided before)
    main.rtl.css

    My question which css file I should edit?

    Thanks

    Answers

    #57239
    @vapvarun

    Hi @crowdsparks, you will need to add any additiaonl css to custom.css
    else you can install https://wordpress.org/plugins/simple-custom-css/

    and it will add a new option inside dashboard and you can simply add your custom css there without editing any files

    Regards
    Varun Dubey

    #57260
    @crowdsparks

    Hi, Varum!

    Thanks. I did as you said. And successfully changed the heading color to white, but text color is still white. And I can`t change it to black. What should I do?

    #57328
    @vapvarun

    Hi @crowdsparks, Please add following css

    
    .single-sfwd-lessons .learndash .lms-post-content p {
      color: #000 !important;
    }
    .single-sfwd-lessons .learndash header.entry-header h1 {
      color: #fff!important;
    }
    
    

    Regards
    Varun Dubey

    #57366
    @crowdsparks

    Thank you, Varun!
    Text in the lesson now is black, heading is white. But text in blog post is still white. How can I make it black?]

    #57513

    Anonymous
    @

    Hi @crowdsparks, Please add following css

    
    .entry-content p {
        color: black !important;
    }
    

    Regards

    #58052
    @crowdsparks

    Thanks

    #58177

    Anonymous
    @

    Anytime:)

    #58613
    @crowdsparks

    Hello, again!

    I am still having a little problem with heading color. If I log in using Chrome Incognito mode (visitor) heading is white, if I log in as register user (or admin) heading is black. Please check attached screenshots. How can I make is same color?

    Thanks

    #58756

    Anonymous
    @

    Hi @crowdsparks, Please add following css:

    
    body:not(.social-learner).page-template-page-no-buddypanel .header-navigation #header-menu>ul>li>a {
        color: #000 !important;
    }
    

    Regards

    #58807
    @crowdsparks

    Hi,

    I did as you said, but it is still white. 🙁

    #58820

    Anonymous
    @

    Hi @crowdsparks, Seems either you have disabled the buddypanel for logged-out users or you are using non buddypanel page template.
    Try this too..

    .page-template-page-no-buddypanel .header-inner .left-col .header-navigation ul li a, .page-template-page-no-buddypanel .header-inner .left-col a {
        color: #000 !important;
    }
    

    Regards

    #58825
    @crowdsparks

    Hi,Pallavi!

    It worked.

    Thank you! 🙂

    #58909

    Anonymous
    @

    Great 🙂

Viewing 14 posts - 1 through 14 (of 14 total)
  • The question ‘Headings Colors v. Text color socialearner’ is closed to new replies.