Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1474399

    Hi, on my site https://www.medmaiora.it/caladelforte/ I would need to have the table containing the white social icons (in the third box immediately under the banner) transparent and without borders… in a previous work I did so:

    #top #av_section_1.main_color .av_textblock_section .avia_textblock table,
    #top #av_section_1.main_color .av_textblock_section .avia_textblock div,
    #top #av_section_1.main_color .av_textblock_section .avia_textblock td {
    border-color: transparent;
    background: transparent;
    }

    #top #av_section_1.main_color tr:nth-child(odd) {
    background: transparent;
    }

    Now I did the same but it doesn’t work.

    Where I am wrong?

    Tks in advance, Gianluca from Italy

    #1474427

    Hey Gianluca,

    Thank you for the inquiry.

    We didn’t find any table element in the home page. Where did you add it? You may need to replace or update the selector “#av_section_1.main_color” depending on the position of the color section containing the table element. You could also apply a custom css class name or ID to the color section element and use that instead. Please check this documentation for more info.

    // https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support

    Best regards,
    Ismael

    #1474428

    I mean the third box under the rotating banner, with the text “seguici e tieniti informato”

    #1474450

    Hi,

    Thank you for the info.

    Try to replace the selector #av_section_1 with #av_section_2, or as suggested above, you can apply a custom css class name or ID to the color section element.

    .home #av_section_2.main_color .av_textblock_section .avia_textblock table,
    .home #av_section_2.main_color .av_textblock_section .avia_textblock div,
    .home #av_section_2.main_color .av_textblock_section .avia_textblock td {
        border-color: transparent;
        background-color: transparent;
    }
    
    .home #av_section_2.main_color .av_textblock_section .avia_textblock tr:nth-child(odd) {
        background-color: transparent;
    }
    

    Best regards,
    Ismael

    #1474455

    Great but now I still see two strange dots at the bottom of the two icons? What aree they? Can I hide them?

    #1474468

    Hi,

    Thank you for the update.

    The dots are caused by this css code:

    #top .av_inherit_color a { text-decoration: underline; }
    

    Did you add this somewhere? You can override it with this css:

    #top .av_inherit_color a { text-decoration: none; }
    

    Best regards,
    Ismael

    #1474496

    Hi I have this code in my css

    .image-overlay { display: none !important; }

    div.phone-info {
    width: 100%;
    text-align: center;
    }

    .image-overlay { display: none !important; }

    .home #av_section_1.main_color .av_textblock_section .avia_textblock table,
    .home #av_section_1.main_color .av_textblock_section .avia_textblock div,
    .home #av_section_1.main_color .av_textblock_section .avia_textblock td {
    border-color: transparent;
    background-color: transparent;
    }

    .home #av_section_1.main_color .av_textblock_section .avia_textblock tr:nth-child(odd) {
    background-color: transparent;
    }

    #top .av_inherit_color a { text-decoration: none; }

    Sincerely I don’t know where could be the code
    #top .av_inherit_color a { text-decoration: underline; }
    but now there are no more dots but the table and the borders are no longer transparent, what did I do?

    Thanks
    Gianluca

    #1474502

    Hi,

    You have to replace #av_section_1 with #av_section_2, or as suggested above, apply a custom css class name or ID to the color section element.

    .home #av_section_2.main_color .av_textblock_section .avia_textblock table,
    .home #av_section_2.main_color .av_textblock_section .avia_textblock div,
    .home #av_section_2.main_color .av_textblock_section .avia_textblock td {
        border-color: transparent;
        background-color: transparent;
    }
    
    .home #av_section_2.main_color .av_textblock_section .avia_textblock tr:nth-child(odd) {
        background-color: transparent;
    }
    

    Please check this link: https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support

    Best regards,
    Ismael

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