How to change text color on home page?

Discussion in 'Local Business WordPress Theme' started by alanglotz, Mar 6, 2015.

  1. alanglotz

    alanglotz New Member

    Joined:
    Dec 16, 2014
    Messages:
    4
    Likes Received:
    0
    Kinzler Text Black.png
    I want to change the text color on the homepage to black. I turned off the contact form and put in text instead. The text is white on yellow background so you cannot read it. Let's make it black color text.

    Same thing with menu text. The text in menu tabs is white and hard to read. Please let us make it black.
     
  2. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .menu_bar {
      background-color: black !important;
    }
    .signup .frontpage_leadcapture
    {
    color:black !important;
    }
    
    Please change color according to your requirement.

    Thanks & Regards
    Pramod Patel
     
  3. alanglotz

    alanglotz New Member

    Joined:
    Dec 16, 2014
    Messages:
    4
    Likes Received:
    0
    Kinzler Text Black.png This does not answer my question. There are two issues. Please respond to both issues.

    1. I want to make the TEXT in the main box (please see photo) black.

    2. I want to make the TEXT in the menu tabs (please see photo) black and without the SHADOW.

    How can I do this with custom CSS? Thank you
     
  4. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi alanglotz!

    Please provide us URL of your website so that we can provide you the exact solution.

    Thanks,
    Praveen
     
  5. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi !

    Use the css code given below in custom css section.
    Code:
    .signup-text p {
    color: black !important;
    }
    Thanks,
    Praveen
     
  6. alanglotz

    alanglotz New Member

    Joined:
    Dec 16, 2014
    Messages:
    4
    Likes Received:
    0
    Look, you are still not solving my problem! I will keep asking the questions until the problem is solved!
    #1: How can we make text in menu bar BLACK and NO SHADOW?
    #2: How can we make text in headline "Contact us for your electric needs" BLACK and NO SHADOW?
    #3: How can we make text under neath headline "contact us for your electric needs" NO SHADOW?
    site url: KinzlerElectric.com

    If you could please answer my questions fully, this will save time for everyone. Please address the above, and see teh attached screenshot if you have a doubt. Thank you for cooperating with me!
     

    Attached Files:

  7. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi alanglotz!

    Please paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    #menu .ddsmoothmenu li a {
    color: black !important;
    text-shadow: none !important;
    }
    .signupinfo h1 {
    color: black !important;
    text-shadow: none !important;
    }
    .signup-text p {
    color: black !important;
    text-shadow: none !important;
    }
    Thanks,
    Praveen
     

Share This Page