Home › Forums › Automattic › Forefront › Remove Blog Title/decrease space btw featured image & footer widget
-
AuthorPosts
-
Sarah Jane HoldenMemberHello,
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.comAugust 13, 2013 at 4:20 am #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:
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.
August 14, 2013 at 1:26 pm #138297
theeagertravellerMemberThanks 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
August 14, 2013 at 11:53 pm #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!
August 15, 2013 at 12:07 am #138331
theeagertravellerMemberBoth please, so the end result should be that the sections are closer to each other horizontally. I hope I didn’t confuse you. Thanks!
August 15, 2013 at 7:53 pm #138401
MichelleThanks 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;
}August 16, 2013 at 1:09 am #138418
theeagertravellerMemberThanks Michelle, have replied on the other thread
August 20, 2013 at 5:31 am #138614
Michelle@sjholden,
Just checking in with you. Are you all set or do you still need help?
September 3, 2013 at 6:41 pm #139422
Kathryn P.Happiness EngineerHi 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.
-
AuthorPosts
The topic ‘Remove Blog Title/decrease space btw featured image & footer widget’ is closed to new replies.