brandonpickus
Shopify Partner
Contact Me
Status
Offline
Last Activity
‎08-05-2022 09:19 AM
Topic Started
0
Topics Started
Topic Solutions
5
Solutions
Post Count
14
Posts
Post Kudos
2
Likes

Community Badges

No content to show

User Activity

Okay so to make sure, you're wanting to hide the titles on your collection page right?
Go to Online Store > Theme and click "Customize" on your current theme. Once there, head to any product page, and hide "Title" under the Product Information section. This will hide ALL product titles.   
Add this to the very bottom of Assets > theme.css in your theme code editor: .hero__btn { background: transparent; border: 1px solid white; }
Ah I see that now, didn't see that before. So if there is an option to disable that you could implement the solution I sent. Then the other option would be go into the Javascript file that controls that fixed ATC button on your theme and set the scro...
It depends on the theme. Dawn and any free Shopify-made theme for 2.0 use pure CSS. However for the paid themes on the Theme Store and third party sites the developers can use whatever they want (especially the third parties). You should be able to c...
Hi there, this should be an easy solve. However it looks like the password you gave is incorrect. Can you double check and I can assist? Thanks.
Hey Marcus, I think this may come down to a few things to better push the ATC button into the frame. For one, you're going to have content shift if you have multiple product images with different aspect ratios. I don't think your image size matters a...
Sure, each new block you put on your page in the theme customizer gets a unique ID on the HTML markup. That way on the CSS front you can select specifically that one block and add new styling without affecting the rest of the blocks. Again, each of t...
The following code should work for you if you only want the PayPal icon to be white. Add it to the bottom of Assets > theme.scss in your theme code editor. #shopify-svg__payments-paypal path { fill: white !important; } If you want all dynamic che...
Hi again, this code should work for you. Add it to the bottom of Assets > theme.scss in your theme code editor. .site-header-sections.page-width { max-width: 100% !important; }
Hi there! Add this to the very bottom of Assets > theme.scss file in your theme code editor: .site-header__wrapper { background: transparent !important; }  
Hi there, are you able to send a link to the site? I'm thinking it is default padding/margins that come with some section blocks. If you want 0 margins/padding, we'll have to select it by it's shopify section ID.
Add the following to your custom.css file. .grid-product__tag--sale { background-color: black; color: white; top: -10px; /* ADD THIS */ right: -10px; /* ADD THIS */ } 
Do this instead: <div style="display: flex; justify-content: center; align-items: center; width: 100%;"> <img style="max-width: 600px;" src="Image url here" alt=""> </div> Play with the max-width property on the image to your liking.
My Accepted Solutions
This widget could not be displayed.
This widget could not be displayed.
Helpful From