Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • in reply to: Enfold 7 Updates to SVG losing Colours/CSS #1479978

    I used similar after going through the html and finding what CSS was setting the Cart SVG icon fill and replicated it in my CSS

    #top #wrap_all .header_color .cart_dropdown_first .cart_dropdown_link.avia-svg-icon svg:first-child,
    #top .header_color .avia_cart_buttons .avia-svg-icon svg:first-child {
    fill: #000;
    }

    in reply to: Enfold 7 Updates to SVG losing Colours/CSS #1479966

    If you are using the Theme colour styling section then it shouldn’t be an issue it is only because I don’t and use my own CSS to style everything that the switch to SVG caused an issue.

    It was as was posted above setting a Fill colour to the Cart, Return to Top and Search in the nav that returned them to how they once were with just color css, so if you are using custom CSS for these elements you just need to set a color as a Fill.

    For example in the scroll to top link the colour of the arrow was previous set by a color style but now needs a Fill style with that same color.

    a#scroll-top-link.avia_pop_class {
    background-color: var(–scroll-top-background-color);
    color: var(–scroll-top-color);
    border: 1px solid var(–scroll-top-border-color) !important;
    opacity: 1;
    }
    #scroll-top-link.avia-svg-icon svg:first-child {
    fill: var(–scroll-top-color) !important;
    }
    a#scroll-top-link.avia_pop_class:hover {
    background-color: var( –scroll-top-hover-bgcolor);
    color: var(–scroll-top-hover-color);
    border: 1px solid var(–scroll-top-hover-bordercolor) !important;
    opacity: 1;
    }
    #scroll-top-link.avia-svg-icon:hover svg:first-child {
    fill: var(–scroll-top-hover-color) !important;
    }

    in reply to: Enfold 7 Updates to SVG losing Colours/CSS #1479932

    Apologise for not relating sooner.

    Because I use my own custom CSS the Cart icon in the header, Return to Top button and Nav Search icon lost the colours with your switch to SVG on 7.0 so we’re not appearing when the theme was updated.

    I use your theme for the great GUI and drop and drag visual setup in Pages which makes it easier for clients updating their sites.

    Thank you for your reply, I actually ended up finding the shopping cart SVG css so have added the fill to it and my other sites now I have those 3 new style settings with your switch to SVG with me not using your inbuilt colour styles setup.

    I may have missed it but I could find any details in your help text about how the switch to SVG would impact, I am not sure if this might be possible going forward to help others 🙂

Viewing 3 posts - 1 through 3 (of 3 total)