Change the background color of two sections on the home page

Discussion in 'Black Horse WordPress Theme' started by v4sb, Feb 4, 2016.

  1. v4sb

    v4sb Member

    Joined:
    Mar 14, 2013
    Messages:
    341
    Likes Received:
    0
    I would like to change the background color to black in the following sections on the home page:

    The homepage two column feature area
    and
    The homepage blog/portfolio section

    After changing the background of those sections to black, I will also need to change the font color to white in those sections only, so that it shows up on the black.

    Thank you
     
  2. priya

    priya Guest

    Hello,

    Greetings from InkThemes!

    Please paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .index-container.first_featured, .gallery {
        background: black;
    }
    .feature-one p, .testimonial_holder .testimonial_jcarousel p, .feature_main_heading, #filters li {
        color: white;
    }
    Hope it will resolve your issue

    Do let me know if you need more assistance,

    Thanks & Regards!
    Priyanka
    InkThemes.com
     
  3. v4sb

    v4sb Member

    Joined:
    Mar 14, 2013
    Messages:
    341
    Likes Received:
    0
    Thank you. This resolved all but a few things and looks like I want except that you cannot read the titles in three sections. I have provided a screenshot. The first two titles need to have white font to show and the third portfolio title needs to be black. See screenshot. Thank you.[​IMG]
     
  4. priya

    priya Guest

    Hello,

    Below is the code for that...
    Code:
    .feature-index .feature-one h1, .testimonial_holder h1 {
        color: white;
    }
    .feature_main_heading {
        color: black !important;
    }
    Hope it will resolve your issue

    Do let me know if you need more assistance,

    Thanks & Regards!
    Priyanka
    InkThemes.com
     

Share This Page