-
Posts
20 -
Joined
-
Last visited
Content Type
Forums
Gallery
Blogs
Events
Store
Downloads
Profiles
Everything posted by 48thmediaco
-
Mobile Header + Navigation to be the same on desktop
48thmediaco replied to adrianalianos's topic in Customize with code
Thank you so much!- 16 replies
-
- navigation
- mobile
-
(and 1 more)
Tagged with:
-
Mobile Header + Navigation to be the same on desktop
48thmediaco replied to adrianalianos's topic in Customize with code
Thank you so much @tuanphan I am curious if there is a way for this menu to mask over the whole screen regardless of device screen size, in a responsive way? Meghan- 16 replies
-
- navigation
- mobile
-
(and 1 more)
Tagged with:
-
Mobile Header + Navigation to be the same on desktop
48thmediaco replied to adrianalianos's topic in Customize with code
I am interested in doing this to a site I have. Can you help me with the code to change the desktop main navigation to use the same 'hamburger' menu that is displayed on mobile? https://gardenia-cranberry-89sj.squarespace.com/ Thank you 🙂- 16 replies
-
- navigation
- mobile
-
(and 1 more)
Tagged with:
-
Format Video Size for Loading on Mobile
48thmediaco replied to 48thmediaco's topic in Customize with code
What code do I add to ensure that the mobile video and desktop video are pulling different sized assets?- 5 replies
-
- video
- custom-css
-
(and 1 more)
Tagged with:
-
Format Video Size for Loading on Mobile
48thmediaco replied to 48thmediaco's topic in Customize with code
Of course, you can access it here: https://hndlhomes.ca/- 5 replies
-
- video
- custom-css
-
(and 1 more)
Tagged with:
-
I have a video load graphic that fits well on desktop however, I am looking for custom code so that it fits appropriately on mobile to. Any ideas on what I can add that will help to scale this proportionally on mobile? The asset file is 1920x1080. Will I require a second asset file? Can be viewed visting URL hndlhomes.ca on a desktop and mobile. Code Injected into header is as follows: <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script> <style> .logoload { background-color: #fff; background-size: 100%; position: fixed; left: 0; top: 0; width: 100%; height: 100%; z-index: 9999; background-position: center; background-repeat: no-repeat; background-image: url("https://static1.squarespace.com/static/6511a807de16be47fc25962d/t/65453f11edae552bdf1d4d59/1699036948437/HNDLpreload.gif"); } </style> <script type="text/javascript"> $(document).ready(function() { // Check if this is the home page by comparing the current URL to the home page URL. if (window.location.pathname === '/') { $(".logoload").delay(4000).fadeOut("slow"); } else { // If it's not the home page, remove the .logoload element. $(".logoload").remove(); } }); </script> Thank you, Meghan
- 5 replies
-
- video
- custom-css
-
(and 1 more)
Tagged with:
-
Remove a hidden cart page from my site
48thmediaco replied to 48thmediaco's topic in Feedback on Your Site
I appreciate the steps for the redirect however, our compliance report is showing this as a major error so I would prefer to have it removed? Do you have any tips?- 3 replies
-
- link
- shopping-cart
-
(and 1 more)
Tagged with:
-
My accessibility report is pulling the following page: https://www.chefshall.com/cart I don't know where this is located in my site dashboard and I would like to remove it. Any insights?
- 3 replies
-
- link
- shopping-cart
-
(and 1 more)
Tagged with:
-
Logo loading screen - code adjustment please
48thmediaco replied to rdreed's topic in Customize with code
I am curious if there is a way to set the load time? I want my animation to play in full (3-5sec) even if the site loads faster.- 39 replies
-
- code-injection
- logo
-
(and 1 more)
Tagged with:
-
Custom font not working on Mobile
48thmediaco replied to 48thmediaco's topic in Fonts, colors and images
Okay, I reloaded the bold font file... and now it's working 😅 -
Custom font not working on Mobile
48thmediaco replied to 48thmediaco's topic in Fonts, colors and images
The whole string of code didn't pull, here it is again. H1 text seems to be the most troublesome on mobile. @font-face { font-family:'Unbounded-Bold'; src: url('https://static1.squarespace.com/static/6511a807de16be47fc25962d/t/6511afa4bd9bc20ec8650136/1695657892911/Unbounded-Bold.ttf'); } @font-face { font-family:'Unbounded-SemiBold'; src: url('https://static1.squarespace.com/static/6511a807de16be47fc25962d/t/6511af9bf6537a05c7d44bd1/1695657885773/Unbounded-SemiBold.ttf'); } @font-face { font-family:'Unbounded-Medium'; src: url('https://static1.squarespace.com/static/6511a807de16be47fc25962d/t/6511af9b9c544f0ec63dc077/1695657885821/Unbounded-Medium.ttf'); } @font-face { font-family: 'Unbounded-Regular'; src: url(https://static1.squarespace.com/static/6511a807de16be47fc25962d/t/6511afacb40bae09dd64bf75/1695657901347/Unbounded-Regular.ttf); } h1 { font-family: 'Unbounded-Bold' !important; } h2 { font-family: 'Unbounded-SemiBold' !important; } h3 { font-family: 'Unbounded-Medium' !important; } h4 { font-family: 'Unbounded-Regular' !important; } -
Hello, my custom font was previously working on Mobile but now it is not. My screenshot shows it's pulling in some areas but not all. https://heptagon-kangaroo-cxhc.squarespace.com/ pass: hndlhomes Here is the code I have input: url('https://static1.squarespace.com/static/6511a807de16be47fc25962d/t/6511af9bf6537a05c7d44bd1/1695657885773/Unbounded-Medium.ttf'); } @font-face { font-family: 'Unbounded-Regular'; src: url(https://static1.squarespace.com/static/6511a807de16be47fc25962d/t/6511afacb40bae09dd64bf75/1695657901347/Unbounded-Regular.ttf); } h1 { font-family: 'Unbounded-Bold'!important; } h2 { font-family: 'Unbounded-SemiBold'!important; } h3 { font-family: 'Unbounded-Medium'!important; } h4 { font-family: 'Unbounded-Regular'!important; }