Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #92524
    Robert
    Participant

    1) Need to fix how logo is being displayed. I’d like logo to be centered, and also I’d prefer for social media icons to be closer to the menu at the top.
    2) I have the white page space at the bottom of my home page – how do I remove this?
    3) I’d like to change the color of the page content, but cannot find where to change the color in the customizer.

    http://www.myredtea.com

    Thanks

    #92542
    Mahesh
    Keymaster

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

    1. I’m afraid this is not possible. But if you do want to center the Site Title and social icons, you can use the following CSS:

    .header-right-active #site-branding {
        width: 100%;
    	text-align: center;
    }
    
    .sidebar-header-right, .sidebar-header-right .widget-wrap {
        text-align: center;
        float: none;
    }

    2. white page space at the bottom of my home page – how do I remove this

    .home #content {
        display: none:
    }

    3. I’d like to change the color of the page content. This option is not included in customizer, however, this can be done with Custom CSS:

    #content #main p {
        color: #000;
    }

    Note: Please change the color hex to your desired color.

    Regards,
    Mahesh

    #92578
    Robert
    Participant

    Thanks so much. Worked perfectly.

    #92604
    Mahesh
    Keymaster

    @robertpkoen: Thank you for your appreciation. Have a nice day!!!

    Regards,
    Mahesh

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Center Logo/Remove Page Edit’ is closed to new replies.