New page Title wrapper width modification in Dawn theme

Hey there,

I have create a new page in Dawn Theme, and set a title for that page. Even though I have set it to the left position successfully but the wrapper is forbidding it to go more further to the left so it can be directly above the image.

Could you please provide me with the necessary code or steps to do so.

Regards,

FT

@FDT

Could you please share your store url so i can check and give you suggetion ..!

Hello @FDT

It’s GemPages support team and glad to support you today.

I would like to give you a solution to support you.

  1. Go to Online Store → Theme → Edit code.

  2. Open your assets/base.css

  3. Paste add the code at the end of this file:

@media screen and (min-width: 750px){
    .page-width.page-width--narrow{
       max-width: var(--page-width);
       padding: 0 5rem;
    }
}

Hope my solution can work and support you!

Kind & Best regards!

GemPages Support Team.

1 Like

@infoatcodelab7 thank you for your prompt reply.

https://fillesdetanios-9130.myshopify.com/pages/a-propos

Hello @GemPages

I appreciate your prompt reply and solution.

It worked but now it has even changed position from the TOP also. All the space from the TOP has gone.

I only need to shift it to the LEFT without any modification from the TOP.

Bests

FDT

@FDT

Please update the code again:

@media screen and (min-width: 750px){
    .page-width.page-width--narrow{
       max-width: var(--page-width);
       padding-left: 5rem;
       padding-right: 5rem;
    }
}
2 Likes

@GemPages

the below code

@media screen and (min-width: 750px){
.page-width.page-width–narrow{
max-width: var(–page-width);
padding-left: 5rem;
padding-right: 5rem;
}
worked perfectly.

I appreciate your prompt action and reply.

Bests

FDT

1 Like