Formatting issues on home screen

Solved

Formatting issues on home screen

alexlomt1
Excursionist
35 1 6

IMG_9735.png

IMG_9736.png

I have several formatting errors on the mobile version of my website. Please see the photos. In the hero section, the text is not fully visible. 

then when you scroll further down, CerebrumForge is not centered properly 


website: https://mmz7sv-mw.myshopify.com/

password: seupri

Accepted Solution (1)

CodingFifty
Shopify Partner
913 136 166

This is an accepted solution.

Hi @alexlomt1,

Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css/main.css/custom.css file Add the provided code at the end of the file.

@media (max-width: 768px){
#shopify-section-1489283389016 h1 {
    font-weight: bold;
    font-size: 20px !important;
}
}
Coding Fifty || Shopify Partner
For any custom section queries, please visit: Fiverr Profile
Found my response useful? Like it and mark as Accepted Solution!
For additional discussions, reach out via: Email ID: codingfifty@gmail.com

View solution in original post

Replies 10 (10)

Mustafa_Ali
Explorer
350 28 57
<style>
@media screen and (max-width: 767px) {
h1.headline {
    font-size: 20px !important;
 } 
}
</style>

MustafA16_0-1742236286964.png

Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->
under the <style> tag before the body ----->
if this code work please do not forget to like and mark it solution

 

CodingFifty
Shopify Partner
913 136 166

This is an accepted solution.

Hi @alexlomt1,

Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css/main.css/custom.css file Add the provided code at the end of the file.

@media (max-width: 768px){
#shopify-section-1489283389016 h1 {
    font-weight: bold;
    font-size: 20px !important;
}
}
Coding Fifty || Shopify Partner
For any custom section queries, please visit: Fiverr Profile
Found my response useful? Like it and mark as Accepted Solution!
For additional discussions, reach out via: Email ID: codingfifty@gmail.com
alexlomt1
Excursionist
35 1 6

Hello. Thank you, this works but how can I fix the second issue - the centering of the "CerebrumForge" text? 

Moeed
Shopify Partner
7389 2000 2441

Hey @alexlomt1 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
@media screen and (max-width: 767px) {
.image-element__wrap img {
    height: 700px !important;
}
}
</style>

RESULT:

Moeed_0-1742236614674.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


alexlomt1
Excursionist
35 1 6

Thanks. What about the second photo? How can I fix the centering issue?

CafeDelMar
Shopify Partner
163 36 46

It will auto-center itself if you apply MustafA16`s solution. The text and the word is just too big for that screen, this is why it overflows to the right.

 

Screenshot_2.png

➡➡   Easy Embed Code   ⬅⬅ add CSS/JS/Liquid codes to any page of your store



Speed Booster App - Improve your store speed in 3 clicks
- Was your question answered? Mark it as an Accepted Solution
alexlomt1
Excursionist
35 1 6

But then it also does double line on the shop now button which it shouldn't do

alexlomt1
Excursionist
35 1 6

Also it messes up and streches other parts it shouldn’t 

IMG_9743.png

Mustafa_Ali
Explorer
350 28 57
<style>
@media screen and (max-width: 767px) {
a.action_button.first_button.highlight-true {
    width: 45%;
 }
img.transition--blur-up.lazyautosizes.lazyloaded {
    height: 100% !important;
 }
.caption .headline {
        font-size: 30.333333px !important;
 }
}
</style>

MustafA16_0-1742294612681.pngMustafA16_1-1742294615827.png

 

 

 

Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->
under the <style> tag before the body ----->
if this code work please do not forget to like and mark it solution

 

 

 

 

alexlomt1
Excursionist
35 1 6

IMG_9744.png