Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #83038
    benowchiro
    Participant

    Hello Mahesh,

    Can you tell me the CSS to change the following homepage headline options?

    Text color
    Background color
    button color
    button hover color

    And, can I add an image to the headline area or replace the button with an image?

    Thanks! You always do a great job supporting us!!!! benowchiropractic.com

    #83061
    Mahesh
    Keymaster

    Hi @benowchiro,

    Go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS:

    /* Homepage Headline Text Color and Background Color. */
    #homepage-message {
        background-color: #444;
        color: #fff;
    }
    
    /* Homepage Headline Button Background Color. */
    #homepage-message .right-section a {
        background-color: #ff0000;
    }
    
    /* Homepage Headline Button Hover Background Color. */
    #homepage-message .right-section a:hover {
        background-color: #00ff00;
    }

    Regards,
    Mahesh

    #91393
    wouwonline
    Participant

    I also want to change the border color of the homepage headline area. I changed it the background to purple, but the border is still grey, i want it purple too. Is that possible? Many thanks!

    http://www.lapienorganizing.nl/

    #91396
    Mahesh
    Keymaster

    @wouwonline: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #homepage-message {
        border-color: #c84f94;
    }

    Regards,
    Mahesh

    #91400
    wouwonline
    Participant

    thanks, it worked!
    But there’s still a border on top of it, maybe thats the border of the slider. How can I change that?

    #91450
    Mahesh
    Keymaster

    @wouwonline: Please use the following CSS:

    #main-slider {
        border-bottom: none;
    }

    Regards,
    Mahesh

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Homepage Headline Options’ is closed to new replies.