Site logo

Archived topic

Cant find containter growth and merging widgets

7 replies · Started by Leif on April 26, 2019

Viewing posts 1–8 of 8

Hi I have two simple questions
I cant find the customize location to increase the container size of my blog content. I can increase my header container but not posts :|

Also in my sidebar, when I put widgets to populate it I want the text that comes after an image to be close to it but I cant figure that out either.
In the link, the text on the right I want to be closer to the image :|

Thanks!

Hi there,

look for this CSS in Customizer > Additional CSS and remove it:

body.single .site.grid-container {
max-width: 800px;
}

ok cool
I still cant figure out how to make the text close to the image though.

under the image on the right of
https://fiveyearfireescape.com/one-million-dollars/

I dont want to be so far from the image but I cant seem to add it under the image in a way that doesnt create lots of space there.

Try this CSS:

#right-sidebar .widget_media_image:first-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

BTW - since this topic GPP 1.8 has a Content Width feature in the Layout Element > Content tab. Which could replace the need for your CSS.

oh nice that was easy!

Also i just noticed that the image at the bottom of the side bar on the same page (link) isn't centered on the sidebar and I can't figure out how to center it.
Do you know how?

Try this:

#right-sidebar .widget_media_image {
    text-align: center !important;
}

nice it worked!

You're welcome

This archived topic is closed to new replies.