Remove Blog Title/decrease space btw featured image & footer widget

Home Forums Automattic Forefront Remove Blog Title/decrease space btw featured image & footer widget

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #107834 Resolve

    Sarah Jane Holden
    Member

    Hello,

    Trying to work out a few more customizations to my site, and would greatly appreciate some help:

    (1) Would like to remove “Blog At WP | Customized Forefront Theme” from the footer of my site. Tried looking around online and am finding mixed results & no luck on the right code.

    (2) Would like to decrease the space between my featured image on the front page and the images I have on my front page widget area 1. Pretty large gap between my image and the text images I have in the widgets & decreasing/cropping my image does not make a difference.

    (3) Is there any way to decrease the space between the images in my front page widget area on the mobile version ONLY. It’s fine on a laptop, but when I look at the site on my phone, there are huge gaps between the images (which I have filled with text).

    Thank you so much for all of your help.

    The blog I need help with is buildingblockssll.com
    #138186

    Michelle

    (1) Would like to remove “Blog At WP | Customized Forefront Theme” from the footer of my site. Tried looking around online and am finding mixed results & no luck on the right code.

    The footer credit is required to be displayed according to our terms of service:

    http://en.wordpress.com/tos/

    Note that even sites hosted through our VIP program, such as the TED blog, display a credit to WordPress.com in the footer.

    (See the bottom of http://blog.ted.com/ for an example)

    Let me know if you have any additional questions about this.

    (2) Would like to decrease the space between my featured image on the front page and the images I have on my front page widget area 1. Pretty large gap between my image and the text images I have in the widgets & decreasing/cropping my image does not make a difference.

    The following CSS controls the amount of space between the featured image and the row of widgets directly below it:

    .optional-widget-area {
    padding-top: 37px;
    }

    I’ve changed the number to 37px (the default is 72px). Feel free to adjust this to suit your preference.

    (3) Is there any way to decrease the space between the images in my front page widget area on the mobile version ONLY. It’s fine on a laptop, but when I look at the site on my phone, there are huge gaps between the images (which I have filled with text).

    You can decrease this space with the following CSS:

    @media (max-width: 460px) {
    .optional-widget-area .widget {
    margin-bottom: 37px;
    }
    }

    The default is 72px, changed here to 37px. Adjust to suit your liking.

    #138297

    theeagertraveller
    Member

    Thanks for the css code for item 2. Is it also possible to decrease the space between front page 1 and front page 2 and footer? Cheers

    #138329

    Michelle

    @theeagertraveller,

    Can you clarify where you’d like to decrease the space? Between the front page 1 widget area and front page 2 widget areas? Or between frontpage 2 and the footer? Thanks!

    #138331

    theeagertraveller
    Member

    Both please, so the end result should be that the sections are closer to each other horizontally. I hope I didn’t confuse you. Thanks!

    #138401

    Michelle

    Thanks for clarifying. Try this and see if it achieves what you’re looking for. If not, let me know, because it’s possible that I still misunderstand exactly what you’re trying to change.

    .optional-widget-area .widget {
    margin-bottom: 39px;
    }
    .page-template-page-templatesfront-page-php .testimonials {
    padding-top: 39px;
    }

    #138418

    theeagertraveller
    Member
    #138614

    Michelle

    @sjholden,

    Just checking in with you. Are you all set or do you still need help?

    #139422

    Kathryn P.
    Happiness Engineer

    Hi there – since it looks like you’ve gotten this sorted, I’m closing this thread, but don’t hesitate to start a new one if you need anything else.

Viewing 9 posts - 1 through 9 (of 9 total)

The topic ‘Remove Blog Title/decrease space btw featured image & footer widget’ is closed to new replies.