Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #760439

    Hi there –

    Three questions please:

    1. The button on this page is not opening up a browser / mail program to email: http://backdropsforbands.com/contact/

    2. The button SEE PRICING is very small, how do I make it bigger? On this page http://backdropsforbands.com/

    3. In the top menu, where it says UPLOAD ART TO SEE A PROOF — I’d like that particular menu item to be a a different color background. The red font is a makeshift fix, I don’t really like that. I’d like it to be the same color text as the other items, but change the background of that item so it makes it pop more. That upload art action is a key call to action to close the sale on my website.

    Thank you!

    Mendy

    #761110

    Hey Meny,

    1. Are you using chrome? you can check on this thread: http://stackoverflow.com/questions/17517600/mailto-links-do-nothing-in-chrome-but-work-in-firefox

    2. I have added this css code in QUick CSS (located in Enfold > General Styling):

    #top .avia-slideshow-button.avia-color-light {
        font-size: 22px;
    }

    3. I have commented this css code that is already in Quick CSS:

    #menu-item-144395 > a > .avia-menu-text { color: red; }

    and above it I added:

    #menu-item-144395 > a  { background-color: #ddd; }

    Just adjust the color as you see fit.

    Best regards,
    Nikko

    #761214

    Thanks.

    I’d like for the reverse menu color — so the natural state is red, and the hover color is grey. How do I switch the hover color? I only see an option to switch the background color, but I don’t see the grey color there in quick css. Thanks.

    #761274

    Hi,

    Try replacing this css code I gave from:

    #menu-item-144395 > a  { background-color: #ddd; }

    to

    #menu-item-144395 > a  { background-color: red; }
    #menu-item-144395 > a:hover  { background-color: #ddd; }

    #ddd is a light gray color you can use hex color codes value like this or you can use color names. You can use this as a reference: http://htmlcolorcodes.com/

    Best regards,
    Nikko

    #763069

    Thanks. Tried adding that code, but nothing doing. Now there’s no change at all, the backround color and hover are the exact same as all the other buttons.

    #763259

    Hi,

    I have checked it and noticed that the > was changed to

    & g t ;

    without the spaces, I just replaced it and tweaked the background as well as the font color a bit. Let us know if it’s good :)

    Best regards,
    Nikko

    #764503

    Great thanks!

    #764504

    How can I change the color of the text in that menu item?

    #764524

    Hi,

    Add this Quick CSS:

    
    .menu-item-top-level menu-item-top-level-6 a {
      color: #fff !important;
    

    let me know if this helped!

    Best regards,
    John Torvik

    #764635

    Unfortunately that did not work.

    #764676

    Hi,

    Try using this css code:

    menu-item-144395 > a .avia-menu-text {
        color: #fff;
    }

    if that doesn’t work try this one instead:

    menu-item-144395 > a .avia-menu-text {
        color: #fff !important;
    }

    Just adjust the colors as you see fit. Hope this helps :)

    Best regards,
    Nikko

    #765105

    Neither of those two worked either. Can you try another code and try it yourself first to make sure it works on my site? Login info is in private content.

    #765293

    Hi,

    I modified the code and it works fine now :) It’s not working because of the same issue I posted here: https://kriesi.at/support/topic/button-bigger-email-button/#post-763259

    Regards,
    Nikko

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