I need help changing the heading and sub-heading text to white and bigger for mobile. I also want the button colors to be white and the text button to be black for mobile. Also if possible to center everything for mobile.
Website: https://gripmags.myshopify.com/
Password: password
Hi @GripMags
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 theme.scss.css.
Step 3: Paste the below code at bottom of the file → Save
@media screen and (max-width: 767px){
h3.SectionHeader__SubHeading.Heading.u-h6 {
font-size: 20px !important;
color: white !important;
}
h2.SectionHeader__Heading.SectionHeader__Heading–emphasize.Heading.u-h1 {
font-size: 30px !important;
color: white !important;
}
header.SectionHeader, .ButtonGroup {
display: flex;
flex-direction: column !important;
align-items: center;
}
#section-slideshow .Button {
color: black !important;
border-color: unset !important;
}
#section-slideshow .Button::before {
background-color: white !important;
}
}
Hope that my solution works for you.
Best regards,
Victor | PageFly
You are welcome @GripMags 