Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #102794
    MehEs
    Participant

    Hello,

    My website URL is: http://dedsolutions.com/

    As you see on the home page the text background color is white. Could you please tell me how I would be able to change the color? I have tried to change the row background color but it changes the color of only part of the white rectangle!

    Thanks

    #102828
    Mahesh
    Participant

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

    #content {
        background-color: #ff00ff;
    }
    
    .panel-widget-style,
    .panel-row-style {
        background: none !important;
        border: none !important;
    }

    Note: Change the color as you desire.
    And you have used inline CSS for background color, please remove it.

    Regards,
    Mahesh

    #102848
    MehEs
    Participant

    @Mahesh: Thank you very much for your help! If you go to my website still there is a white area below the text. Is it because of using CSS for the background? Would you please tell me how to remove it?

    Thank you
    Mehes

    #102859
    MehEs
    Participant

    I have another question as well. If you go to other pages the background color is different from the color of the text background. Is there any way the change the background text color?

    Thank you

    #102899
    Mahesh
    Participant

    @mehes: You’ve changed the color to white and if you want to remove the black area below, add the following CSS:

    .home #featured-content {
        display: none;
    }

    I have checked you site’s other pages, all have white background, seems you’ve fixed it. Let me know if any problem.

    Regards,
    Mahesh

    #103005
    MehEs
    Participant

    Thank you, Mahesh. I used those codes but now I can’t change the background color or border color of the rows on other pages. Also in the Contact Us page the widget I used to get the email, name, and address of the person who wants to contact us are disappeared. I was wondering if you can let me know how I can fix it!

    Thank you

    #103028
    Mahesh
    Participant

    @mehes: Do you want to have the current background color on home page only? If yes, replace the above CSS (first one) with the following:

    .home #content {
        background-color: #ff00ff;
    }
    
    .home .panel-widget-style,
    .home .panel-row-style {
        background: none !important;
        border: none !important;
    }

    Also in the Contact Us page the widget I used to get the email, name, and address of the person who wants to contact us are disappeared:
    Can you please clarify more on this?

    Regards,
    Mahesh

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Home page color’ is closed to new replies.