Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #865827

    hi can someone explain what ive done wrong its happened on two sites

    when i opt for transparent header all the social icons and supplementry telephone text is invisble on mobile device view on just the home page
    see

    #865862

    please try this in quick css :

    @media only screen and (max-width: 767px) {
    .responsive #top #header_meta { background-color: #cb0147 !important }
    }
    • This reply was modified 6 years, 6 months ago by Guenni007.
    #865864

    yep

    • This reply was modified 6 years, 6 months ago by Guenni007.
    #866260

    Hi,

    Thanks for helping out @guenni007 :-)

    Did you have any luck with the suggestion @codecreative?

    Best regards,
    Rikard

    #866275

    Hi Guys

    Thank you will try now

    Can you advise why this is happening and the theme doesn’t work out of the box so to speak?

    So I can explain to my assistant, if they don’t have to do this with each build be better if I can figure out why it is happening in the first instance

    Thank you Guenni007

    #866283

    Great this css fix worked :)

    The site url was now moved to http://firenso-dev.flywheelsites.com/

    Yeah any clarification on why this is happening is appreciated as I’ve noticed it happen more then once and I must be doing something to trigger it

    #866973

    Hi,

    Please upgrade to version 4.1.2. The social icons are actually disabled on mobile devices by default.

    @media only screen and (max-width: 479px) {
        .responsive #top #wrap_all #header .social_bookmarks, .responsive #top #wrap_all #main .av-logo-container .social_bookmarks {
            display: none;
        }
    }

    Best regards,
    Ismael

    #868104

    I don’t understand Ismael

    I didn’t pro actively attempt to enable them. Is the upgrade going to resolve this issue? I don’t want it repeating you see if I can help it

    #868111

    hey guys
    I’d like to add an anchor link that says Admin and points to the admin url of a site to the sites socket.

    Okay so I know I can manually write this inside the theme options, but if a site is say on a temp development link then goes live I need to go back and re edit it.

    So I want to make use of echo admin_url(); php function. I could hardcore it into footer.php but I dont want to do this. Because if I do it in the parent files a theme update overwrites it and if I place it inside child theme then that file won’t update with the latest theme updates.

    What I want to do is use an function in the child theme functions.php to hook this code in. Can you elaborate on what the code to do this is? I’m presuming it is some kind of an action hook?

    #869043

    Hi,

    1.) The css code above which is used to hide the social icons on mobile view is missing in your installation so you have to upgrade the theme. The latest version is 4.2.

    2.) Please use the “avia_after_footer_columns”, “avia_before_footer_columns” or the “ava_before_footer” hook. Example.

    add_action('ava_before_footer', 'ava_before_footer_mod', 10);
    function ava_before_footer_mod() {
      // do something here;
    }

    Best regards,
    Ismael

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