Text on landing page is not showing on mobile

Solved

Text on landing page is not showing on mobile

gihan7575
Explorer
60 1 7

As you can see, there is an issue with the website being mobile optimized. I want the text above the button to be seen on both mobile and PC. my website is https://lobonewyork.com/

 

 

 

 

IMG_0073.pngScreenshot_20230109_033804.png

Gigi
Accepted Solutions (2)

MandasaTech
Shopify Partner
723 146 151

This is an accepted solution.

Hello @gihan7575 

I would like to give you a solution to support you:
1. Go to Online Store-> Theme-> Edit code
2. Open your theme.liquid theme file
3. Paste the below code before </body> :


<style>
@media only screen and (max-width: 749px){
.slideshow__title, .slideshow__subtitle {
display: block !important;
}
}
</style>


Was my reply helpful? Please Like and Accept Solution. This mean alot to me.

☞ Helpful or Question answered? Please Click Like & Mark it Accepted Solution
☞ Want to modify or custom changes on store for affordable price? Click on Contact button here
☞ Email at info@mandasa.in
☞ Whatsapp at +918989609120 | Hire us at: Website Support Page

View solution in original post

GemPages
Shopify Partner
5625 1262 1279

This is an accepted solution.

Hello @gihan7575,

 

Glad to support you today.

 

I checked your page on Mobile and found the Text hidden is due the Theme add CSS code to hide:

GemPages_0-1673254629402.png

 

To can show that text on mobile, you can check out my suggestion below to make it:

1. Go to Edit code on Online Store:

GemPages_1-1673254699391.png

 

2. add my code  above the </body> tag on Theme.liquid: 

<style>
	@media only screen and (max-width: 749px){
		body.template-index .slideshow__title, body.template-index .slideshow__subtitle {
			display: block !important;
		}
	}
	
</style>

 

I hope you find the answer helpful.

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

View solution in original post

Replies 5 (5)

MandasaTech
Shopify Partner
723 146 151

This is an accepted solution.

Hello @gihan7575 

I would like to give you a solution to support you:
1. Go to Online Store-> Theme-> Edit code
2. Open your theme.liquid theme file
3. Paste the below code before </body> :


<style>
@media only screen and (max-width: 749px){
.slideshow__title, .slideshow__subtitle {
display: block !important;
}
}
</style>


Was my reply helpful? Please Like and Accept Solution. This mean alot to me.

☞ Helpful or Question answered? Please Click Like & Mark it Accepted Solution
☞ Want to modify or custom changes on store for affordable price? Click on Contact button here
☞ Email at info@mandasa.in
☞ Whatsapp at +918989609120 | Hire us at: Website Support Page
gihan7575
Explorer
60 1 7

It worked. Thanks for your help.

Gigi
willroberts
Visitor
1 0 0

Hi,

 

I have added this code and it still does not show up on mobile when it is in portrait mode but does when it is landscape. 

GemPages
Shopify Partner
5625 1262 1279

This is an accepted solution.

Hello @gihan7575,

 

Glad to support you today.

 

I checked your page on Mobile and found the Text hidden is due the Theme add CSS code to hide:

GemPages_0-1673254629402.png

 

To can show that text on mobile, you can check out my suggestion below to make it:

1. Go to Edit code on Online Store:

GemPages_1-1673254699391.png

 

2. add my code  above the </body> tag on Theme.liquid: 

<style>
	@media only screen and (max-width: 749px){
		body.template-index .slideshow__title, body.template-index .slideshow__subtitle {
			display: block !important;
		}
	}
	
</style>

 

I hope you find the answer helpful.

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
gihan7575
Explorer
60 1 7

This works as well, thanks GemPages

Gigi