Jump to content

Removing the Margin of an image for Mobile View

Recommended Posts

  • Replies 14
  • Views 1.3k
  • Created
  • Last Reply
35 minutes ago, Dtcforce said:

Site URL: http://dtcforce.com

Hi,

I have built my website on squarespace 7.1.

For some reason the images on the homepage the margin is going beyond the screen because of this the screen in mobile is moving to the right when navigating

Attached is an image for reference 

Margin of the images.jpg

I tried to fix it

https://prnt.sc/szxjxk

<style>
  #yui_3_17_2_1_1592209946118_113 .image-block {
    left: 0;
    margin: 0 auto;
  }
</style>

 

BeyondSpace - Squarespace Website Developer

🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox)
🗓️ Delivery Date Picker (Squarespace Date picker form field)
💫 Gallery block 7.1 workaround
🥳 Sparkplugin Customisations Browsers (Browse +100 Spark plugin customisations)
🥳 Elfsight Template Browsers (Browse +1000 Elfsight widget Templates)

If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you!

 

Link to comment
10 minutes ago, bangank36 said:

<style> #yui_3_17_2_1_1592209946118_113 .image-block { left: 0; margin: 0 auto; } </style>

Where do I add this? 

In custom CSS I have added this  for the implementation image:

#block-yui_3_17_2_1_1589030188217_12991{width: 100px; position: relative; left:85px;
@media only screen and (max-width:950px){position: relative; left:100px}}

Link to comment
8 minutes ago, Dtcforce said:

Where do I add this? 

In custom CSS I have added this  for the implementation image:

#block-yui_3_17_2_1_1589030188217_12991{width: 100px; position: relative; left:85px;
@media only screen and (max-width:950px){position: relative; left:100px}}

In the custom css, if you want to specifically place it smaller screen, then replace the code of yours with

<style>
  #block-yui_3_17_2_1_1589030188217_12991 {
    width: 100px; 
    position: relative; 
    left:85px; 
  }
  @media only screen and (max-width: 768px) {
    #yui_3_17_2_1_1592209946118_113 .image-block {
      left: 0;
      margin: 0 auto;
    }
  }
</style>

 

BeyondSpace - Squarespace Website Developer

🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox)
🗓️ Delivery Date Picker (Squarespace Date picker form field)
💫 Gallery block 7.1 workaround
🥳 Sparkplugin Customisations Browsers (Browse +100 Spark plugin customisations)
🥳 Elfsight Template Browsers (Browse +1000 Elfsight widget Templates)

If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you!

 

Link to comment
10 minutes ago, Dtcforce said:

Where do I add this? 

In custom CSS I have added this  for the implementation image:

#block-yui_3_17_2_1_1589030188217_12991{width: 100px; position: relative; left:85px;
@media only screen and (max-width:950px){position: relative; left:100px}}

If you are already in custom css code section, you can remove the style tags

BeyondSpace - Squarespace Website Developer

🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox)
🗓️ Delivery Date Picker (Squarespace Date picker form field)
💫 Gallery block 7.1 workaround
🥳 Sparkplugin Customisations Browsers (Browse +100 Spark plugin customisations)
🥳 Elfsight Template Browsers (Browse +1000 Elfsight widget Templates)

If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you!

 

Link to comment
9 minutes ago, bangank36 said:

In the custom css, if you want to specifically place it smaller screen, then replace the code of yours with


<style>
  #block-yui_3_17_2_1_1589030188217_12991 {
    width: 100px; 
    position: relative; 
    left:85px; 
  }
  @media only screen and (max-width: 768px) {
    #yui_3_17_2_1_1592209946118_113 .image-block {
      left: 0;
      margin: 0 auto;
    }
  }
</style>

 

image.png.70d96ae76b21f862ca9f86f9e13359d9.png

 

Link to comment
25 minutes ago, Dtcforce said:

image.png.70d96ae76b21f862ca9f86f9e13359d9.png

 

Sorry I picked thr wrong id

#block-yui_3_17_2_1_1589030188217_12991 {
    width: 100px; 
    position: relative; 
    left:85px; 
  }
  @media only screen and (max-width: 768px) {
    #page-section-5ee19a70b8f78712728f4917 .image-block {
      left: 0 !important;
      margin: 0 auto;
    }
  }

 

BeyondSpace - Squarespace Website Developer

🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox)
🗓️ Delivery Date Picker (Squarespace Date picker form field)
💫 Gallery block 7.1 workaround
🥳 Sparkplugin Customisations Browsers (Browse +100 Spark plugin customisations)
🥳 Elfsight Template Browsers (Browse +1000 Elfsight widget Templates)

If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you!

 

Link to comment
17 minutes ago, bangank36 said:

Sorry I picked thr wrong id


#block-yui_3_17_2_1_1589030188217_12991 {
    width: 100px; 
    position: relative; 
    left:85px; 
  }
  @media only screen and (max-width: 768px) {
    #page-section-5ee19a70b8f78712728f4917 .image-block {
      left: 0 !important;
      margin: 0 auto;
    }
  }

can apply this to the whole mobile screen page?

 

 

Link to comment
6 minutes ago, Dtcforce said:

 

I used the max-width: 768px, you can change it per your mobile screen settings

BeyondSpace - Squarespace Website Developer

🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox)
🗓️ Delivery Date Picker (Squarespace Date picker form field)
💫 Gallery block 7.1 workaround
🥳 Sparkplugin Customisations Browsers (Browse +100 Spark plugin customisations)
🥳 Elfsight Template Browsers (Browse +1000 Elfsight widget Templates)

If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you!

 

Link to comment

I suggest you find the section id via inspector

https://prnt.sc/szzfql

BeyondSpace - Squarespace Website Developer

🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox)
🗓️ Delivery Date Picker (Squarespace Date picker form field)
💫 Gallery block 7.1 workaround
🥳 Sparkplugin Customisations Browsers (Browse +100 Spark plugin customisations)
🥳 Elfsight Template Browsers (Browse +1000 Elfsight widget Templates)

If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you!

 

Link to comment
8 minutes ago, bangank36 said:

I suggest you find the section id via inspector

https://prnt.sc/szzfql

I wonder how you can take screenshot Chrome Dev?

I also use the Lightshot extension, and it seems that it can't capture Dev Tools

Thank you.

Email me if you have need any help (free, of course.). Answer within 24 hours. 
Or send to forum message

Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)

Link to comment
10 minutes ago, tuanphan said:

I wonder how you can take screenshot Chrome Dev?

I also use the Lightshot extension, and it seems that it can't capture Dev Tools

Thank you.

I used Lightshot app

BeyondSpace - Squarespace Website Developer

🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox)
🗓️ Delivery Date Picker (Squarespace Date picker form field)
💫 Gallery block 7.1 workaround
🥳 Sparkplugin Customisations Browsers (Browse +100 Spark plugin customisations)
🥳 Elfsight Template Browsers (Browse +1000 Elfsight widget Templates)

If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you!

 

Link to comment

Sorry I picked thr wrong id

#block-yui_3_17_2_1_1589030188217_12991 {
    width: 100px; 
    position: relative; 
    left:85px; 
  }
  @media only screen and (max-width: 768px) {
    #page-section-5ee19a70b8f78712728f4917 .image-block {
      left: 0 !important;
      margin: 0 auto;
    }
  }

Thank You bangank36 🙂

Link to comment
2 minutes ago, Dtcforce said:

Sorry I picked thr wrong id


#block-yui_3_17_2_1_1589030188217_12991 {
    width: 100px; 
    position: relative; 
    left:85px; 
  }
  @media only screen and (max-width: 768px) {
    #page-section-5ee19a70b8f78712728f4917 .image-block {
      left: 0 !important;
      margin: 0 auto;
    }
  }

Thank You bangank36 🙂

You're welcome, appriciate if the answer is marked as solved

BeyondSpace - Squarespace Website Developer

🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox)
🗓️ Delivery Date Picker (Squarespace Date picker form field)
💫 Gallery block 7.1 workaround
🥳 Sparkplugin Customisations Browsers (Browse +100 Spark plugin customisations)
🥳 Elfsight Template Browsers (Browse +1000 Elfsight widget Templates)

If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you!

 

Link to comment

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Squarespace Webinars

Free online sessions where you’ll learn the basics and refine your Squarespace skills.

Hire a Designer

Stand out online with the help of an experienced designer or developer.