Tagged: ,

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #1426272

    Hi
    I have two questions for you to ask.
    #1 I can’t dispose properly the images into the layout, I can’t align them with the text (when there is some) and same with the header, I can’t find the settings to change. Below are some examples
    https://img.savvyify.com/image/9CGMd
    https://img.savvyify.com/image/9Cx3t
    https://img.savvyify.com/image/9CZZX
    https://img.savvyify.com/image/9C26M

    #2 I previously asked to remove the “+” symbol from the accordion, now the client would like the “+” symbol at the far right of the accordion line. I attach an example taken from the net
    https://img.savvyify.com/image/9CAcA

    Thanks

    #1426323

    Hey Intercettazioni,

    Thank you for the inquiry.

    1.)

    https://img.savvyify.com/image/9Cx3t

    In the home page, the alignment of the logo against the content is not really that noticeable, but you can add this css code to adjust the position of the logo,

    .home div .logo {
        left: -5px;
    }
    

    https://img.savvyify.com/image/9CGMd

    In the “cellulari-spia” page, please note that each portfolio item has a 20px padding around it, which is why the first items in the row don’t align with the logo. If you want to get rid of the padding, you can add this css code.

    .grid-sort-container .grid-entry {
        padding: 0;
    }
    

    Or push the logo to the left with this css.

    .page-id-3949 div .logo {
        left: 20px;
    }
    

    2.) How did you remove the toggle icon in the Accordion element? The toggle_icon container is missing when we checked one of the accordion element in the site.

    Best regards,
    Ismael

    #1426328

    Hi Ismael,
    I know that the alignments are not very noticeable but the owner of the site is very demanding.

    The toggle icon has been removed with this CSS:
    .togglecontainer.av-minimal-toggle .single_toggle .toggle_icon {
    display: none;
    }

    #1426329

    Hi Ismael,
    upon closer inspection I noticed that this is CSS
    .grid-sort-container .grid-entry {
    padding: 0;
    }
    than this other CSS
    .page-id-3949 div .logo {
    left: 20px;
    }
    they fix the alignment of the photos but the underlying text is no longer aligned, I also need a solution that resolves the problem in all the portfolio pages, pages and Home

    #1426394

    Hi,

    Thank you for the update.

    1.) The issue with your alignment request is that if we adjust the alignment for pages with the portfolio grid element, the logo won’t align properly on pages containing different elements with different positioning. That’s why we specifically targeted the page. If you want to apply these changes to other pages, simply duplicate the css rule that we provide above and replace the ID in the selector (.page-id-3949) with the ID of the page containing the portfolio grid element.

    they fix the alignment of the photos but the underlying text is no longer aligned,

    Would you mind providing a screenshot of the issue?

    2.) Have you tried removing the css code to bring back the toggle symbols (+ – ) to the accordion element? You can also switch the accordion style to classic.

    Best regards,
    Ismael

    #1426626

    Hello Ismael,

    I’m sorry for the late response.
    1- In this photo you see the current situation: https://img.savvyify.com/image/9LLmj

    using this CSS
    .grid-sort-container .grid-entry {
    padding: 0;
    }
    the CSS script eliminated the spaces between the images and that’s not good: https://img.savvyify.com/image/9LPtO

    using this CSS
    .page-id-3949 div .logo {
    left: 20px;
    }
    the CSS aligns the images to the header but the text is not aligned, the text has been aligned with another CSS: https://img.savvyify.com/image/9L4Yz

    About point 1.) I am wondering, where can I find “the ID of the page containing the portfolio gride element”?

    2- This is the photo of what happens if I remove the CSS: https://img.savvyify.com/image/9LMIp
    the text of the accord has been aligned to the left with another CSS

    #1426661

    Hi,

    Thank you for following up.

    1.) You can try pulling the portfolio grid element to the left with this css code.

    .page-id-3949 div#av-sc-portfolio-1 {
        margin-left: -5px;
        width: calc(100% + 15px);
    }

    The number 3949 is the ID of the page and the class name page-id-3949 is applied to the body element of each page. You should be able to inspect the page elements using a browser inspector.

    // https://developer.chrome.com/docs/devtools/open/

    2.) We tried logging in to the site but the login info above is invalid. Have you tried adjusting the position of the toggle symbols?

    .togglecontainer.av-minimal-toggle .single_toggle .toggle_icon {
        left: auto;
        right: 20px;
        position: absolute;
        text-align: right;
    }
    

    Best regards,
    Ismael

    #1427154

    Hello Ismael,

    Regarding the alignment of the photos in the portfolio, I’ll leave it as it is for now because this solution doesn’t work either.
    The CSS for the toggle symbols works, thanks.
    I ask you one last courtesy, I made a draft for a new page template, I would like to eliminate the lines around the images and align the images to the header
    https://img.savvyify.com/image/9PuR5
    https://intercettazioni.biz/?post_type=portfolio&p=8823&preview=true

    Thanks

    #1427194

    Hi,

    I would like to eliminate the lines around the images and align the images to the header

    You can remove the border and space around the gallery with this css code.

    #top div .avia-gallery .avia-gallery-big {
        border: 0;
        padding: 0;
    }
    
    #top div .avia-gallery img {
        padding: 0;
        border-radius: 0;
        border: 0;
    }
    

    Thank you for your patience.

    Best regards,
    Ismael

Viewing 9 posts - 1 through 9 (of 9 total)
  • You must be logged in to reply to this topic.