motacilla
-
Posts
7 -
Joined
-
Last visited
Content Type
Forums
Gallery
Blogs
Events
Store
Downloads
Profiles
Posts posted by motacilla
-
-
Thank you, unfortunately, I have the basic plan, is there any way to do that without business plan and code injection?
-
Hi! I've got a problem with split navigation on my site. I've added CSS to split it into the half with logo in the middle. I also adjusted the screen width so it doesn't overlap when the window is minimized. It looks and works just as I wanted on Chrome but it is doing weird things in Firefox and Safari. How do I make sure it will look good in every browser? Screenshots with descriptions are attached below.
Code:
@media screen and (min-width: 1100px){
.header-nav {
position: absolute;
top: 53px;
bottom: 0;
margin-top: 0!important;
margin-left: 50px!important;
}.header-nav-item:nth-of-type(3) {
margin-right: 400px!important;
}
.header-title-logo a {
z-index: 1000;
position: relative;
}
} -
It worked, thank you so much!
-
Thanks for answering! But it appears in five of the records in DNS (ftp, mail, motacillastudio.com, pop, smtp). Should I change the IP of these records in DNS from 181.110.51.200 to one of the IP addresses from Squarespace? Or just delete them all?
-
Scrolling blocks on the full width without widening the other blocks?
in Customize with code
Posted
1) The scrolling blocks are perfectly fitted for the site's width but when I add the CSS it widens all of the content of the pages and it looks bad on both desktop and mobile. Is there any way to widen only the scrolling box without interfering with the other blocks (markdown, text, accordion block) so that the margin stays there? Here's the code that I've used:
[data-section-id="62b09086b0ea6c4c06ff099a"] .content-wrapper{
padding-left: 0!important;
padding-right: 0!important;
margin: 0!important
}
.Marquee {
width:100%!important
}
#page{
overflow-x: visible
}
2) How to prevent the text from the scrolling box from displacing to the bottom on mobile? It looks okay on desktop and is horizontally centered just as I want it to. But on mobile, the text from the scrolling box goes to the bottom of the box. The only thing that works is putting spacers on both sides of the scrolling box but it takes so much space and I'd like to avoid it. Or maybe there is some way to decrease the height of the spacer with CSS?