No content to show
User Activity
You would need to edit the code. You will have to add a class such as "soldOut" to the main div in order to control everything inside of it.After that, you can write css to give it opacity, change background color, or completely hide it.-------------...
Select the product section and on the settings scroll down to "Custom CSS". Set it to 1rem to match all the text padding - if you set it to zero, it may go too far to the left; adjust it accordingly.ul {
padding-left: 1rem;
}
07-21-2023
Yes, it is possible only if your theme comes with a HTML section. The only way possible for them not to leave your shopify website is to embed the external schedule using an <iframe>. 1) Create the link in the navigation, or anywhere you want to put ...
The link you provided is locked by a password.I can guess that you may be working on a separate theme and not the "live" version.Or depending of the location of your css modification, shopify's css might be taking priority; make sure you place it at ...
Without providing a link it is hard to tell.A possible solution would be to inspect the element, and reduce or remove any margin and padding that each product-block may have.
07-21-2023
Yes you can, simply at any section to the page, test it, inspect the button, and copy the button's "class" and element-tree. For instance, some default buttons' tree may be: <button><span> ... or <a><div><span>...so in your custom liquid you need to ...
07-21-2023
This portion or <div> is part of a separate section; it is not part of the product-section (Product information).If this is part of an app, you can add the app itself to the product-section, in the product template. Simply select the "Product informa...
h2 {
visibility: hidden !important;
}Please note, that the element will be hidden, but the location, padding, and margin will remain there! - you will see a blank gap on the pageIf you would like to hide the element completely then use:h2 {
displ...
Then you need to change the theme settings (customization) for the text, make all text white Or, in the css target all the text selectors:span, strong, b, i, li, div, a, p, h1, h2, h3, h4, h5, h6 {
color: #fff !important;
}
07-20-2023
While looking at your source code, I see that there is no <nav> element inside your <header> element. You need to customize the header and make sure you select a menu/navigation.And also make sure this menu/navigation has link.
You would have to modify the section's code; you need to know basic HTML and liquid in order to be able to setup the settings for customization, or just basic HTML in order to copy-paste some of the existing code and put it in the right places for it...
What white border on images? I don't see any, screenshot?Try this - it will target ALL the elements (divs, imgs) past this "image-with-text" selector: .image-with-text * {
border: unset !important;
} Otherwise... "the whole page to be" green bac...
There should be an option for "Link label" and "Link Url"- some themes require you to have a button for the link to work, otherwise, you would have to modify the section's code; you need to know basic html and liquid in order to be able to setup the ...
I see you're trying to target the "img" element with that img selector at the end. 1) If you want to target all the sections "image with text" on your site, you can use: .image-with-text img {
border: 4px solid #4f8b78;
} 2) If you want to target ...
You can do multiple ways:1) Grab the main element: main {
background: #000;
color: #fff;
} 2) Target a section class: .shopify-policy__container {
background: #000;
color: #fff;
} 3) Target their section id (which is assigned by shopify, per...
My Accepted Solutions
Subject | Views | Posted |
---|---|---|
602 | 07-21-2023 05:17 PM | |
2469 | 07-21-2023 02:31 PM | |
607 | 07-20-2023 01:46 PM | |
821 | 03-21-2023 02:57 AM |