Change image size in services section

Home Forums All Other Themes Change image size in services section

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #118143
    Richard MooreRichard Moore
    Participant
    • Topics: 4
    • Replies: 7
    • Total: 11
    Member since: February 27, 2019

    Hi,
    Sorry to be a pain..
    I need to change the size of the images in our ‘Youth & Kids Groups’ Section . www.sccchurch.co.uk.
    I also need to remove the right hand side bar pages menu that appears towards the bottom of the page along with the ‘Sompting Community Church’ title to the left of this.
    All help greatfully recieved.

    #118178
    Sonnal S SinhaSonnal S Sinha
    Moderator
    • Topics: 0
    • Replies: 30632
    • Total: 30632
    Member since: August 16, 2013

    Hi,

    Kindly go to Appearance >> Customize >> Basic >> Scroll down to find Custom CSS and paste there:

    #demos .servicebox-icon {
        width: 100%;
        height: 230px;
        position: relative;
    }
    
    .servicebox img {
    	position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .home_section10_content iframe {
        width: 100%;
    }
    .home #sidebar {
        display: none;
    }
    .home .single_wrap {
        width: 100%;
        text-align: center;
    }

    Regards,
    Dave

    #118216
    Richard MooreRichard Moore
    Participant
    • Topics: 4
    • Replies: 7
    • Total: 11
    Member since: February 27, 2019

    Thank you, that has worked on the home page, but it still appears on every other page.. Can we get rid of this as well?

    #118219
    Sonnal S SinhaSonnal S Sinha
    Moderator
    • Topics: 0
    • Replies: 30632
    • Total: 30632
    Member since: August 16, 2013

    Hi,

    Kindly use this one

    #sidebar {
        display: none;
    }

    Regards,
    Dave

    #118223
    Richard MooreRichard Moore
    Participant
    • Topics: 4
    • Replies: 7
    • Total: 11
    Member since: February 27, 2019

    Thanks Dave, that has removed the sidebar, but it hasn’t extended the pages to full width, just hidden the sidebar..
    How can i make the pages full width now?

    #118224
    Sonnal S SinhaSonnal S Sinha
    Moderator
    • Topics: 0
    • Replies: 30632
    • Total: 30632
    Member since: August 16, 2013

    Hi,

    .single_wrap {
        width: 100%;
        text-align: center;
    }

    Regards,
    Dave

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.