ehamline
Member-
Posts
14 -
Joined
-
Last visited
ehamline's Achievements
-
Add Tags Below Thumbnails in Product Grid
ehamline replied to ehamline's topic in Customize with code
Hi- just wanted to check in again. I'd love some insight if at all possible on the above if any of the experts out there have a free moment. Thank you!! -
Site URL: http://www.together-store.com Hi there- I'm trying to add two pages to my mobile navigation dropdown that are unlinked on my desktop website. The pages are: together-store.com/contact together-store.com/about These will continue to be unlinked (hidden) on my main website navigation. But I do want them to be added into my mobile navigation dropdown. Would this be possible? Any advice or help would be greatly appreciated. Thank you in advance!! Website: https://www.together-store.com/clothing Password: welcome
-
Hide Header Logo In Order To Use In Checkout Page
ehamline replied to ehamline's topic in Customize with code
Thank you @tuanphan! -
Hide Header Logo In Order To Use In Checkout Page
ehamline replied to ehamline's topic in Customize with code
Thank you @bangank36 - I understand the Checkout cannot be edited. I am wondering if we can just hide the uploaded img logo on the main website leaving the h2 Title in its place. I believe this would allow me to be able to use an img logo on the Checkout page while still retaining an h2 Title on the website. Hope this makes sense. Much appreciated! -
Add Tags Below Thumbnails in Product Grid
ehamline replied to ehamline's topic in Customize with code
Absolutely. Thank you @bangank36 the direct link is: https://www.together-store.com/clothing Password: 'welcome' -
Beyondspace reacted to a post in a topic: Add Tags Below Thumbnails in Product Grid
-
Beyondspace reacted to a post in a topic: Hide Header Logo In Order To Use In Checkout Page
-
Site URL: https://www.together-store.com/clothing Hello! I'm attempting to figure out how to use an img logo in my checkout page while still retaining the live-text title on my main website header. I prefer straight up live-text title instead of an img logo but, unfortunately, this means the checkout page has a crummy looking font for the title. Would a solve be to hide the uploaded img logo in CSS so only the title shows? Thus allowing me to select the 'use logo' field in the checkout customization page? I've tried a few things to no avail. Any insight or help would be greatly appreciated. Thank you!! Erik Website: https://www.together-store.com/clothing Password: welcome
-
Site URL: https://www.together-store.com/clothing Hello! I would love to be able to add Tags below the product thumbnails in the grid... between the .grid-title and .grid-prices. I plan to use Tags to function as a way to organize brands on the website as categories will be reserved for, well, categories. Categories are reserved on the lefthand side of the page for actual product categories (shirts, pants, socks, etc.) whereas Tags would be used for individual product brands (Nike, Reebok, Birkenstock, etc.) and would hopefully be shown as described between the .grid-title and .grid-prices. Clicking said brand 'Tag' would link to a page showing all that tags products (effectively a brand page). Hope this makes sense! More than happy to rephrase or include any other info. Any insight or help with this would be greatly appreciated. Thank you so much!! Erik Website: https://www.together-store.com/clothing Password: welcome
-
Custom CSS Header Style - Apply p2 via custom CSS
ehamline replied to ehamline's topic in Customize with code
I did- thank you @tuanphan 🙂 -
Custom CSS Header Style - Apply p2 via custom CSS
ehamline replied to ehamline's topic in Customize with code
Of course- p2 style is used on the Header Title "Together". I'm editing the size and padding, etc. of "Shopping Cart" in custom CSS currently. But, this is a little sloppy as any time the browser window is resized it scales and pushes the "Shopping Cart" into a different position and size that is not relative to the mirrored header title "Together" on the opposite of the website. Thank you! -
Left Justify Header Title Above Header Navigation
ehamline replied to ehamline's topic in Customize with code
I did- thank you! -
Left Justify Header Title Above Header Navigation
ehamline replied to ehamline's topic in Customize with code
Hi password is "welcome" thank you! -
Custom CSS Header Style - Apply p2 via custom CSS
ehamline replied to ehamline's topic in Customize with code
Hi password is "welcome" thank you! -
Site URL: https://burgundy-tetra-8dp5.squarespace.com/ Hi there! I'll start off by apologizing as this very well could be a simple fix! I've removed my cart icon and substituted text "Shopping Cart" and have two things I would like to edit. First, I would like to apply the 'paragraph 2' style to this text in order to keep it cohesive with the rest of the nav pages, etc. as things will likely change as the design progresses. It seems quite a bit cleaner to attack this now rather than having to manually adjust font, size, spacing, etc. via Custom CSS for the "Shopping Cart (0)" every time the design is altered. Second, I would really love to hide the "(0)" until something is added by a customer- reappearing at "(1)", etc. I've got my custom CSS and a quick screen grab attached. Any insight or help would be greatly appreciated! Thank you : ) Erik @media screen and (min-width:992px) { /* Cart number to cart text */ span.sqs-cart-quantity:before { content: "SHOPPING CART ("; } span.sqs-cart-quantity:after { content: ")"; } header#header svg.icon.icon--cart { display: none; } .header .header-actions-action--cart .icon { width: auto; } .icon-cart-quantity { position: fixed !important; font-size: 33px; top: 10px; right: 10px; } } /* Nav under header */ .header-title-nav-wrapper { flex-direction: column; justify-content: start !important; }
-
Site URL: https://burgundy-tetra-8dp5.squarespace.com/ Hi there! I'm having a bit of difficulty with some custom CSS. In effect, I've dropped the Header Navigation below the Header Title and I'm trying to justify them both to the left (nav under title)... I've got the CSS attached below alongside a screengrab. Any help would be much appreciated! Thank you! Erik @media screen and (min-width:992px) { /* Cart number to cart text */ span.sqs-cart-quantity:before { content: "SHOPPING CART ("; } span.sqs-cart-quantity:after { content: ")"; } header#header svg.icon.icon--cart { display: none; } .header .header-actions-action--cart .icon { width: auto; } .icon-cart-quantity { position: fixed !important; font-size: 33px; top: 10px; right: 10px; } } /* Nav under header */ .header-title-nav-wrapper { flex-direction: column; justify-content: start !important; }