How do i move the button on my slideshow?

How do i move the button on my slideshow?

AURA20223
Excursionist
40 0 7

I'm having trouble aligning the shop now button on my slideshow.

 

I would like it directly under the text as seen in the screenshot below where the yellow box is

 

AURA20223_0-1677194666642.png

 

However on my website it appears at the bottom for some reason.

 

aurathefragrance Is my website and the password i daonag

Replies 4 (4)

PageFly-Victor
Shopify Partner
7865 1786 3131

Hi @AURA20223 

This is Victor from PageFly - Landing Page Builder App

 

You can try this code by following these steps: 

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file base.css

Step 3: Paste the below code at bottom of the file -> Save

 

.banner__content {

    padding-left: 0 !important;

    margin-left: 0 !important;

}

 

Hope that my solution works for you.

Best regards,

Victor | PageFly

GemPages
Shopify Partner
5625 1262 1279

Hello @AURA20223 ,

 

You can follow these steps: 
1. Go to Online Store->Theme->Edit code

GemPages_0-1677208341750.png

2. Open your theme.liquid file, paste the below code before </body>

GemPages_1-1677208361558.png

    <style>
      @media (min-width: 1024px ) {
        .banner--desktop-transparent .banner__box {
            padding-top: 0px;
            padding-left: 0px;
        }        
        .slideshow__text-wrapper.banner__content {
            padding-left: 0px;
            padding-right: 0px;
        }
      }
    </style>

I hope the above is useful to you.


Kind & Best regards, 
GemPages Support Team

GemPages - Build any high-converting store pages for any business


- If you find my reply helpful, please hit Like and Mark as Solution
- Get connected: App Store | Blog | Community | Help Center
AURA20223
Excursionist
40 0 7

This doesnt work

PageFly-Victor
Shopify Partner
7865 1786 3131

@AURA20223 

You can try again with this code:

.slideshow__text-wrapper.banner__content.banner__content--bottom-left.page-width.banner--desktop-transparent { 
padding-left: 0 !important;
margin-left: 0 !important;
}