-
Posts
48 -
Joined
-
Last visited
AlexSan's Achievements
-
cami_leisk reacted to a post in a topic: How to change Category Title Font Size?
-
AlexSan reacted to a post in a topic: Create blog-page with titel in a hover, instead of title underneath
-
Huib reacted to a post in a topic: Create blog-page with titel in a hover, instead of title underneath
-
Create blog-page with titel in a hover, instead of title underneath
AlexSan replied to Huib's topic in Customize with code
-
@maya_m, Hmm that's weird. They shouldn't be visible until you hover. Could try adding !important to opacity? .sqs-block-summary-v2 .summary-block-setting-design-carousel .summary-item:not(.positioned) { position: relative !important; transform: unset !important; } .summary-content { text-align: center; color: white !important; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0 !important; transition: all 0.2s; } .summary-thumbnail-outer-container:hover + .summary-content{ opacity: 1 !important; transition: all 0.2s; } Let's see if that works.
-
@maya_m, Did you want the titles to appear on the image, or appear beneath them on hover? If it's on the image, use the following code: .sqs-block-summary-v2 .summary-block-setting-design-carousel .summary-item:not(.positioned) { position: relative !important; transform: unset !important; } .summary-content { text-align: center; color: white !important; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0; transition: all 0.2s; } .summary-thumbnail-outer-container:hover + .summary-content{ opacity: 1; transition: all 0.2s; } If you want it to fade in on hover underneath the image: .summary-content { opacity: 0; transition: all 0.2s; } .summary-thumbnail-outer-container:hover + .summary-content { opacity: 1; transition: all 0.2s; } Let me know if the fade in on hover works as expected!
-
AlexSan reacted to a post in a topic: How to adjust the logo padding in the header
-
AlexSan reacted to a post in a topic: How to adjust the logo padding in the header
-
mark.bate reacted to a post in a topic: How to adjust the logo padding in the header
-
AlexSan reacted to a post in a topic: How to adjust the logo padding in the header
-
Ziggy reacted to a post in a topic: How to adjust the logo padding in the header
-
How to adjust the logo padding in the header
AlexSan replied to mark.bate's topic in Customize with code
@mark.bate, Give this css a try: .header .header-announcement-bar-wrapper { padding-top: 0 !important; } -
AlexSan reacted to a post in a topic: Justify Newsletter Signup in Mobile Only
-
AlexSan reacted to a post in a topic: Customize shopping cart page logo
-
kaydotjpg reacted to a post in a topic: Transparent Scrollbar Track
-
AlexSan reacted to a post in a topic: Split Nav Overlay Into 2 Columns?
-
@maya_m, I see. The site is private again, but I can take a look tomorrow morning and update the css. In the meantime, give this a try: .sqs-block-summary-v2 .summary-block-setting-design-carousel .summary-item:not(.positioned) { position: relative !important; transform: unset !important; } .summary-title { text-align: center; color: white !important; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0; } .sqs-block-summary-v2:hover .summary-title:after { opacity: 1; transition: all 0.1s; }
-
@maya_m, Think your original code may need some tweaking as well. Text isn't fading in when you hover, and there's some repeated css. Here is the code for the summary carousel, let me know if the following works: .sqs-block-summary-v2 .summary-block-setting-design-carousel .summary-item:not(.positioned) { position: relative !important; transform: unset !important; } .summary-title { text-align: center; color: white; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0; } .sqs-block-summary-v2:hover .summary-title { opacity: 1; transition: all 0.1s; } I haven't included the blurry/darken effect. Should move the text to the center of the image and show it on hover.
-
AlexSan changed their profile photo
-
AlexSan reacted to a post in a topic: NEED HELP URGENTLY WITHE CHECKERBOARD DESIGN
-
Ziggy reacted to a post in a topic: Transparent Scrollbar Track
-
@kaydotjpg, The code you're using is working as intended. However, I get what you're trying to do. The way people use to do it (setting scroll bar to overlay) is deprecated, and no longer works. It's a little more complicated to do now. I would suggest using simplebar, however, this doesn't work on <body>, only on <div>. Take a look at this example: jsfiddle Could also take a look at OverlayScrollbars. Not familiar with this one.
- 2 replies
-
- scrolling
- custom-css
-
(and 1 more)
Tagged with:
-
It'd be the same/similar code you have for the blog items, but the class names would be different. You can use developer tools (CTLR + SHIFT + C) or right click and inspect element to figure out what that should be. If you're not familiar with code, it may be difficult to tell what class to use. Let me know if you need help!
-
AlexSan reacted to a post in a topic: Customize shopping cart page logo
-
AlexSan reacted to a post in a topic: Customize shopping cart page logo
-
VIDDIY reacted to a post in a topic: Customize shopping cart page logo
-
@VIDDIY, I don't believe you are allowed to insert code into the checkout at all for security reasons. If the check out needs the black and red logo, I would make it the main theme logo and then use code on the pages that need the white and red logo.
- 8 replies
-
- shopping-cart
- selling
-
(and 3 more)
Tagged with:
-
@charlineca, I believe the right solution would be to not use a grid. I don't think this is something that can be fixed with css.
-
armni reacted to a post in a topic: [help] How can I make one accordion open at a time?
-
tuanphan reacted to a post in a topic: Custom code for UX on mobile only.
-
@Thurmod, Gonna give my two cents: I'd like to see a lil more spacing on the navigation links, they feel a little cluttered, but got use to it pretty quick. Carousel looks good! I think the "View Portfolio" Button may be better placed somewhere on the Carousel. Most common is centered, but could look good elsewhere! The currently booking section text color doesn't contrast enough with the grey background it's on in my opinion. Rest of the pages look good! I think it's very black and white, which isn't inherently a bad thing, but I think some color would be good, specially for photography. Think this might inspire you: https://www.petermckinnon.com/ I'm sure you've heard of him.
-
[help] How can I make one accordion open at a time?
AlexSan replied to armni's topic in Customize with code
Did you make them with custom code/css? Can you share a link to your site? -
@Conor03, Sounds like you're looking for snap scrolling on mobile? Something like this: https://bodacious.be/#what_we_do If so, this forum post may be helpful: Snap Scroll CSS on Index Page Hope that helps!
- 2 replies
-
- mobile
- custom-css
-
(and 2 more)
Tagged with:
-
Hello ! @charlineca I see what you mean. There could be a variety of reasons for this. The image dimensions could be too small, and the grid box could be too big (either in height or width), so it is stretching the image and giving it that blurry look. Squarespace recommends the width of your images to be between 1500 and 2500 pixels. Also make sure you're processing your images from hi res to web quality correctly.
-
jeanneemariee reacted to a post in a topic: Having Trouble Adjusting Mobile Menu Items Alignment and Spacing on 7.1
-
@jeanneemariee, the code is incorrect! That's my bad. I do recommend going with the JavaScript solution, as then you're able to style the <span> to be positioned to the right of your menu, as well as changing the font and font size, closer to the way you had it in your original design. I'd be happy to help with that aswell. For your current css, the issue is that each <a> is not together (like i thought), they are each in different divs. Try this: .header-menu-nav-item:nth-child(1) .header-menu-nav-item-content:after { content: ".......... 01"; } .header-menu-nav-item:nth-child(2) .header-menu-nav-item-content:after { content: ".......... 02"; } .header-menu-nav-item:nth-child(3) .header-menu-nav-item-content:after { content: ".......... 03"; } .header-menu-nav-item:nth-child(4) .header-menu-nav-item-content:after { content: ".......... 04"; } If you want to try adding !important, it'd be like this: .header-menu-nav-item:nth-child(4) .header-menu-nav-item-content:after { content: ".......... 04" !important; }