Tagged: 

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

    For the contact page on the new website I’m building I have the fontello icons next to an address in the Google Maps marker tooltip. I want to change the color, but can’t figure out how.
    Thanks for helping me out.

    #711659

    it would be much easier to help you with a link.
    How did you place the fontello icon in that google map?

    #711664

    Understandable, but I’ve put in a private link. The sit is far from ready… http://succes.studioserton.nl/contact/

    #711668

    yes i understand that but otherwise you have to wait til a mod is on your thread:

    i don’t understand how you create this bubble info – because there are some color style informations on each and an opacity set.
    you can change it all by :

    #av_gmap_1 .av_font_icon {
        color: #900 !important;
        opacity: 1 !important;
    }

    but i guess it is the opacity info which you want to get rid off – so only change that part of code

    if you want a specific color for each tell us.

    • This reply was modified 8 years ago by Guenni007.
    #711671

    if you want it a bit bigger those icons:

    #av_gmap_1 .av-icon-char::before {
        font-size: 24px;
        position: relative;
        top: 2px;
    }

    edit: or better place the icons with vertical align:

    #av_gmap_1 .av-icon-char::before {
        font-size: 24px;
        position: relative;
        vertical-align: middle;
    }
    • This reply was modified 8 years ago by Guenni007.
    #711672

    and you see that there is no alignment now because icons are different width – give the container a fix width:

    #av_gmap_1 .av_font_icon {
        color: #9c27b0 !important;
        opacity: 1 !important;
        width: 36px !important;
    }

    thats it

    #711673

    That’s awesome, thanks for the help!

    #711800

    Hi @suus,

    Great, glad you got it working and thanks @guenni007 for the help!

    Best regards,
    Rikard

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