-
Content Count
2,356 -
Joined
-
Last visited
-
Days Won
25
bangank36 last won the day on February 3
bangank36 had the most liked content!
Personal Information
- Website
Recent Profile Visitors
-
lionessa reacted to an answer to a question: Fullscreen Slideshow Mobile Adjustment
-
tuanphan reacted to an answer to a question: How to add coloured border to these specific text blocks
-
Remove button, header, menu and footer from one page.
bangank36 replied to Bartigol's question in Coding and Customization
Just paste the snippet into Advance code injection of the webinar page. Head up: I forgot the <style> tag <style> footer, header, #block-f85cdbb04f7e74cfd6c0 .sqs-block-content p:nth-child(1), #block-7ab5e35fbc858f87de3f { display: none; } </style> -
Destroy javascript for when in editor
bangank36 replied to ArtW's question in Coding and Customization
The script contain condition to not add the snippet into the page when in editor mode -
bangank36 started following How to customize "Tag" design, Destroy javascript for when in editor, Fullscreen Slideshow Mobile Adjustment and 7 others
-
Destroy javascript for when in editor
bangank36 replied to ArtW's question in Coding and Customization
Include the script in a function <script> !function(){window.self!=window.top||window.top.document.getElementById("your-script-name")||function(e,t,s,i,a){if(s.querySelector("#"+t))i&&i(this);else{var n=document.createElement("script");n.src=e+"?cache="+((new Date).getTime()+"").substr(0,8),n.id=t,n.onload=function(){a&&this.remove(),i&&i(this)},s.appendChild(n)}}("your-script-url","your-script-name",window.top.document.getElementsByTagName("head")[0])}(); </script> -
bangank36 reacted to a question: Destroy javascript for when in editor
-
Fullscreen Slideshow Mobile Adjustment
bangank36 replied to lionessa's question in Coding and Customization
try this @media only screen and (max-width: 768px) { #split-group-1 .wm-split-1 { order: 1 !important; } #split-group-1 .wm-split-2 .gallery-fullscreen-slideshow[data-width="full-bleed"] { height: 75vh !important; } } -
bangank36 reacted to a question: Fullscreen Slideshow Mobile Adjustment
-
Resizing Code Blocks for Mobile
bangank36 replied to meganntab's question in Coding and Customization
Try this custom css @media screen and (max-width: 767px) { #block-yui_3_17_2_1_1614718295210_14318 { width: 100% !important; padding: 0 !important; } #block-yui_3_17_2_1_1614718295210_14318 .sqs-block-content { width: 100%; padding-top: 56%; height: 0; } #block-yui_3_17_2_1_1614718295210_14318 .sqs-block-content iframe { position: absolute; top: 0; left: 0; width: 100% !important; height: 100%; } } -
bangank36 reacted to a question: Resizing Code Blocks for Mobile
-
How do I remove the title from under the thumbnails of my gallery?
bangank36 replied to ShaunPendy's question in Coding and Customization
your site is private, could you enable password- 1 reply
-
- design
- gallery-block
-
(and 2 more)
Tagged with:
-
bangank36 reacted to a question: Newsletter form hover text colour change
-
code Newsletter form hover text colour change
bangank36 replied to peachanddot's question in Coding and Customization
try this .newsletter-block .newsletter-form-button:hover { color: #fff !important; } -
Spacing/Padding between Sections
bangank36 replied to nickasbell's question in Coding and Customization
try section[data-section-id="602c8cfa46bf60790c640dfc"] .content-wrapper { padding-bottom: 0 !important; } section[data-section-id="603ec195f6bc5006a9526437"] .content-wrapper { padding-top: 0 !important; } -
How to customize section theme colors
bangank36 replied to Stellar's question in Coding and Customization
You can use custom css to target the specific page/block to get rid of universal section color theme https://chrome.google.com/webstore/detail/igjamfnifnkmecjidfbdipieoaeghcff- 1 reply
-
- code-injection
- code
-
(and 1 more)
Tagged with:
-
bangank36 reacted to a question: How to customize section theme colors
-
bangank36 reacted to a question: Banner text with a dissolve effect for 7.0
-
bangank36 reacted to a question: Cool Dynamic Effects On Mouse Over Images
-
Cool Dynamic Effects On Mouse Over Images
bangank36 replied to cupoftea's question in Coding and Customization
There is some similar effect with tutorials on codrops, this feature required extensive custom code injection Gooey Hover Effects on Images with Three.js | Codrops (tympanus.net) -
Remove button, header, menu and footer from one page.
bangank36 replied to Bartigol's question in Coding and Customization
The menu and button is on a code block... footer, header, #block-f85cdbb04f7e74cfd6c0 .sqs-block-content p:nth-child(1), #block-7ab5e35fbc858f87de3f { display: none; } -
bangank36 reacted to a question: Remove button, header, menu and footer from one page.
-
tuanphan reacted to an answer to a question: Vertical align of text box
-
tuanphan reacted to an answer to a question: Open print dialogue box from button click?
-
tuanphan reacted to an answer to a question: Blog List Page Except Line Font Edit
-
Aweber Integration for Subscriber registrations
bangank36 replied to Brandimore's question in Coding and Customization
I like the lightbox/popup idea -
you can use code injection for this, what is your site url?
-
bangank36 reacted to a question: How to customize "Tag" design
-
I would like my homepage thumbnails to be rounded. Any help? 🙏🙏🙏
bangank36 replied to ShaunPendy's question in Coding and Customization
You mean like this? .homepage .portfolio-grid-basic .grid-item .grid-image { border-radius: 25px; }