Jump to content

Agha_Waqas

Member
  • Posts

    133
  • Joined

  • Last visited

  • Days Won

    1

Reputation Activity

  1. Like
    Agha_Waqas got a reaction from twilliamsphoto in Lightbox text color?   
    Hi, Add below code into CSS editor
    .sqs-lightbox-meta p { color: #fff !important; }
  2. Like
    Agha_Waqas got a reaction from tracydickason in Accordian drop downs in additional information not working   
    Hi Tracy, Will you please share the website link?
  3. Thanks
    Agha_Waqas got a reaction from Swharton24 in Creating a custom navigation bar   
    You can tweak the navigation with CSS, Hide your logo, Make the Navigation 100% and use Flex box.
     
  4. Like
    Agha_Waqas got a reaction from tracydickason in Accordian drop downs in additional information not working   
    Hi, i review your website and it seems like you are using h3 for the accordion. simply replace the h2 to h3 into JavaScript code and it will works.
  5. Like
    Agha_Waqas got a reaction from tracydickason in Accordian drop downs in additional information not working   
    I think you already fix it. now accordions show into 4 columns 
  6. Like
    Agha_Waqas got a reaction from tracydickason in Accordian drop downs in additional information not working   
    if you want to change the font size of the accordion heading. add below code
    .markdown-block h4 {
    font-size: calc(1 * 1rem) !important;
    }
  7. Like
    Agha_Waqas got a reaction from Bluemonque in Place image below text image block / Stack (image alignment below text)   
    hi add below code to CSS editor
    .image-block .design-layout-stack { display: flex !important; flex-direction: column-reverse !important; }
  8. Love
    Agha_Waqas got a reaction from tuanphan in How to edit a floating Book Us Today Button - all pages of website   
    Hi Chris, di you see the button code into Footer code injection

    settings > advanced > code injection > header or footer

    you must be found there.
  9. Like
    Agha_Waqas got a reaction from tuanphan in Place image below text image block / Stack (image alignment below text)   
    hi add below code to CSS editor
    .image-block .design-layout-stack { display: flex !important; flex-direction: column-reverse !important; }
  10. Like
    Agha_Waqas got a reaction from Ashley1234 in Gallery grid Overlay Text Size and Font not changing   
    Adjust the line height in the same code which i provided you 
    line-height: 20px; 
  11. Like
    Agha_Waqas got a reaction from Ashley1234 in Gallery grid Overlay Text Size and Font not changing   
    hi. applied below code
    .gallery-caption-grid-masonry p { font-size: 30px !important; }
  12. Thanks
    Agha_Waqas got a reaction from sleepyacorn in Change text link to a button?   
    Hi. add below code into CSS Editor
    #block-yui_3_17_2_1_1619992736841_27453 {
        .image-card-wrapper .sqs-dynamic-text {
            p a {
                color: #fff;
                background-color: #1a1a1a;
                border-color: #1a1a1a;
                padding: 6px 10px;
            }
        }
    }
  13. Like
    Agha_Waqas got a reaction from sastavangogh in Custom CSS for Hover Effect on Dropdown menu links not showing, 7.1   
    Hi i just your code in your code you added the ";" before the a remove it, it a bug due to that its not working.
    otherwise use below code
    .header-nav-folder-item a:hover {
      border-bottom:1px solid #fff !important;
    }
  14. Like
    Agha_Waqas got a reaction from tuanphan in Gallery grid Overlay Text Size and Font not changing   
    hi. applied below code
    .gallery-caption-grid-masonry p { font-size: 30px !important; }
  15. Like
    Agha_Waqas got a reaction from tuanphan in Vimeo Play Button moved from centred to bottom left. HELP!   
    it looks fine to me

  16. Like
    Agha_Waqas got a reaction from tuanphan in 2 column in mobile view   
    Your Welcome
  17. Like
    Agha_Waqas got a reaction from BoulevardNorth in Transparent Navigation Folder Links - Squarespace 7.1   
    Simply add !important after the color or use below code
    body:not(.header--menu-open) .dark .header-nav-folder-content {
      background-color: transparent !important; }
  18. Like
    Agha_Waqas got a reaction from tuanphan in Move button in mobile menu   
    add below code into css editor

    @media (max-width: 1024px){
    #eapps-google-reviews-6c531fd1-9bd5-4ab4-88d6-e677c4eb6f67 { z-index: 9 !important;}
    }
  19. Like
    Agha_Waqas got a reaction from tuanphan in Move button in mobile menu   
    Your welcome.
    The z-index property specifies the stack order of an element. An element with greater stack order is always in front of an element with a lower stack order. 
    i used the max-width: 1024px is because your mobile navigation is start from there, if we only do this for mobile just then the issue will still remain for the tablet and ipads users.
  20. Like
    Agha_Waqas got a reaction from tuanphan in Line up product title with top of product photo   
    Hi. Add below code into CSS editor
    .ProductItem-summary { align-items: flex-start !important; }
  21. Like
    Agha_Waqas got a reaction from Beyondspace in Turn images in summary block into clickthrough links   
    Ahhhh I see!!! actually there is custom code in css which is blocking it
    below is the code which blocked the image clickthrough, Remove below code then it will works

     
    .summary-thumbnail-outer-container a { pointer-events: none !important;  cursor: default !important; }
  22. Like
    Agha_Waqas got a reaction from LaurenKG in Position: sticky not working outside of edit mode?   
    will you please share the site link?
     
  23. Like
    Agha_Waqas got a reaction from derricksrandomviews in Turn images in summary block into clickthrough links   
    Ahhhh I see!!! actually there is custom code in css which is blocking it
    below is the code which blocked the image clickthrough, Remove below code then it will works

     
    .summary-thumbnail-outer-container a { pointer-events: none !important;  cursor: default !important; }
  24. Like
    Agha_Waqas got a reaction from Casselease in 2 column in mobile view   
    Hi, you can use below code to get rid from the spacing. simply copy paste below code into CSS editor
    @media (max-width: 520px) {
        #page-section-6079eef730a0cf157bbfc577 {
            .span-12 .row {
                .span-6 .html-block {
                    padding: 0 17px !important;
                }
            }
        }
    }
  25. Like
    Agha_Waqas got a reaction from tuanphan in 2 column in mobile view   
    Hi, you can use below code to get rid from the spacing. simply copy paste below code into CSS editor
    @media (max-width: 520px) {
        #page-section-6079eef730a0cf157bbfc577 {
            .span-12 .row {
                .span-6 .html-block {
                    padding: 0 17px !important;
                }
            }
        }
    }
×
×
  • Create New...

Squarespace Webinars

Free online sessions where you’ll learn the basics and refine your Squarespace skills.

Hire a Designer

Stand out online with the help of an experienced designer or developer.