Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #155455
    dzamani
    Participant

    Hi, I need to change the front page logo, title and subtitle font size, remove extra space in the front page and change the header size in all the pages ?

    Thank you ?

    #155498
    sapana
    Participant

    @dzamani:/* To change front page Logo*/
    Go to=> Dashboard=> Appearance=> Customize=> Site Identity=> Select the logo you want to add.

    /*To change the Title and Sub Title Font Size*/

    .site-title {
        font-size: 50px !important;
    }
    .site-description {
        font-size: 40px !important;
    }

    -To remove the extra space and change header size I need to take a look at your site, Please do post your site url so that I can resolve your issues.
    let me know if this helps you out!
    Kind Regards,
    Sapana

    #155611
    dzamani
    Participant

    https://aldtechnicalsolutions.com

    and what about changing the logo size?

    #155616
    dzamani
    Participant

    there is a huge gap between Services and Welcome to ALD

    #155617
    dzamani
    Participant

    oh and how can i change the size of the header (not in the front page but in the rest of the site?)

    #155679
    sapana
    Participant

    @dzamani: I visit your site it is not live yet, let me know as soon as your site is live so that I can look into those issues.
    Kind Regards,
    Sapana

    #155837
    dzamani
    Participant

    It’s live now.

    #155861
    sapana
    Participant

    @dzamani:/*For changing the logo size*/

    .custom-logo-link {
    max-width: 200px;
    }

    /* To reduce the gap between services and welcome to ALD*/
    Go to=> Appearance=> Customize=> Additional CSS and add the following CSS code

     .home .services-section.section {
    padding-bottom: 0px;
    }
    .home .entry-container.full-width {
    padding-top: 0px !important;
    }
    .home .entry-content {
    margin-top: 0px !important;
    }

    /* change the header size of the header except in home page*/

    body:not(.home) .site-header-main.layout-two {
        padding:0;
    }

    Let me know if this works out!
    Kind Regards,
    Sapana

    #155885
    dzamani
    Participant

    thank you, it all worked well but the header size in all the pages but the homepage. I am talking about the header where it lists the name of the page and not the header that has the logo and the name of the site 🙂

    #156144
    sapana
    Participant

    @dzamani:/*Change the size of Header except in Homepage*/
    Go to=> Appearance=> Customize=> Additional CSS and add the following CSS code

    body:not(.home) #header-navigation-area {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    }

    Let me know if this works out!

    Kind Regards,
    Sapana

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘how to change the font size and how to remove extra spaces in the front page?’ is closed to new replies.