How can I enlarge the Google Maps box on my website?

Solved

How can I enlarge the Google Maps box on my website?

c2ccoffee
Excursionist
21 1 0

Can someone help me make the box where google maps is on my website bigger so the map shows more? For some reason I cannot get it to work.

 

https://ctoccoffee.com/pages/location

 

 

 

 

Accepted Solution (1)

Artzen_tech
Shopify Partner
552 113 112

This is an accepted solution.

Hello @c2ccoffee 
Its Artzen Technologies! We will be happy to help you today.


You can try to follow these steps:

Go to Online Store -> Themes -> Actions -> Edit code.

Go Assets folder -> theme.liquid file.

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

<style>
@media screen and (min-width: 750px){
.section-template--19261391929657__7ea650f6-a56e-4b5f-bdc4-189d06c1998c-padding {
    height: 500px;
}
}
@media screen and (max-width: 749px){
.section-template--19261391929657__7ea650f6-a56e-4b5f-bdc4-189d06c1998c-padding {
    height: 500px;
}
}
</style>

 

Artzen_tech_0-1696224346548.png

Let me know if need further assistance
Regards,
Artzen Technologies

If helpful, please Like and Accept this Solution to help others
Artzen Technologies | A Shopify Development Agency
WhatsApp - 9877983930

Book FREE CONSULTATION who want to migrate to Shopify or want to start an eCommerce business with Shopify

View solution in original post

Replies 2 (2)

Artzen_tech
Shopify Partner
552 113 112

This is an accepted solution.

Hello @c2ccoffee 
Its Artzen Technologies! We will be happy to help you today.


You can try to follow these steps:

Go to Online Store -> Themes -> Actions -> Edit code.

Go Assets folder -> theme.liquid file.

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

<style>
@media screen and (min-width: 750px){
.section-template--19261391929657__7ea650f6-a56e-4b5f-bdc4-189d06c1998c-padding {
    height: 500px;
}
}
@media screen and (max-width: 749px){
.section-template--19261391929657__7ea650f6-a56e-4b5f-bdc4-189d06c1998c-padding {
    height: 500px;
}
}
</style>

 

Artzen_tech_0-1696224346548.png

Let me know if need further assistance
Regards,
Artzen Technologies

If helpful, please Like and Accept this Solution to help others
Artzen Technologies | A Shopify Development Agency
WhatsApp - 9877983930

Book FREE CONSULTATION who want to migrate to Shopify or want to start an eCommerce business with Shopify
c2ccoffee
Excursionist
21 1 0

Thank you so much!