I want to remove the space at the bottom of the image

Solved

I want to remove the space at the bottom of the image

pickemparts
Tourist
8 0 2

I want to remove the empty space I have on the bottom image of the last section. Ideally would want it to be left aligned as well, but when I set the "content position" to top left, the text doesn't span the width of the section. 

 

I am using the Empire theme by the way. 

 

Any help would be greatly appreciated. 

 

URL: https://pickemparts.com/

 

 

Screen Shot 2024-06-11 at 1.18.16 PM.png

Accepted Solutions (2)

Asad-Mahmood
Navigator
308 53 61

This is an accepted solution.

Hi,

 

To remove the space below the section and set the width of content you need to go to your online store -> customize -> settings -> custom css and paste this code there


@media screen and (min-width: 720px) {
    .pxs-image-with-text-section {
        margin-bottom: 0px;
    }
.site-footer-wrapper {
    margin-top: 0px;
}
    .pxs-image-with-text-content {
        width: 100%;
    }
}
If my solution has been helpful, you can consider supporting me via Buy Me a Coffee.
Hire me: asadmahmood8470@gmail.com
WhatsApp
Fiver




View solution in original post

Made4uo-Ribe
Shopify Partner
9846 2340 2936

This is an accepted solution.

Hi @pickemparts 

check this one. 

From your Shopify admin dashboard, click on "Online Store" and then "Themes".

Find the theme that you want to edit and click on "Actions" and then "Edit code".

In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

And Save.

 

.pxs-image-with-text-content-wrapper.pxs-image-with-text-content-position-y-top {
    padding-bottom: 2rem !important;
    justify-content: flex-start;
}

 

And save. 

Result:

Made4uoRibe_0-1718140892965.png

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 2 (2)

Asad-Mahmood
Navigator
308 53 61

This is an accepted solution.

Hi,

 

To remove the space below the section and set the width of content you need to go to your online store -> customize -> settings -> custom css and paste this code there


@media screen and (min-width: 720px) {
    .pxs-image-with-text-section {
        margin-bottom: 0px;
    }
.site-footer-wrapper {
    margin-top: 0px;
}
    .pxs-image-with-text-content {
        width: 100%;
    }
}
If my solution has been helpful, you can consider supporting me via Buy Me a Coffee.
Hire me: asadmahmood8470@gmail.com
WhatsApp
Fiver




Made4uo-Ribe
Shopify Partner
9846 2340 2936

This is an accepted solution.

Hi @pickemparts 

check this one. 

From your Shopify admin dashboard, click on "Online Store" and then "Themes".

Find the theme that you want to edit and click on "Actions" and then "Edit code".

In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

And Save.

 

.pxs-image-with-text-content-wrapper.pxs-image-with-text-content-position-y-top {
    padding-bottom: 2rem !important;
    justify-content: flex-start;
}

 

And save. 

Result:

Made4uoRibe_0-1718140892965.png

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.