Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #414922

    Hi, is it possible to use a different logo variation on the sticky header?

    If not, how may I colour the sticky header background so that the logo stands out more? Also, how to colour the menu section when in sticky header scroll.

    #414934

    Ok. I have found the area required to change the colours- so consider that one resolved.

    One issue I have remaining is that I now see many border lines in the header, around the menu items etc.. Where may I change these borders to match the header colour?

    #415151

    Hi!

    Do you have a link for the site in question so that we can take a closer look please?

    Regards,
    Rikard

    #415194
    This reply has been marked as private.
    #415365

    Hi!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .av-main-nav > li > a,#header_main_alternate {
      border: none!important;
    }

    Can you please post a screenshot and show the changes you would like to make? You can upload your screenshots on imgur.com or Dropbox public folder and post the links here

    Cheers!
    Yigit

    #416876
    This reply has been marked as private.
    #417301

    Hey!

    1- You can add your link as following to make your link “click-to-call”

    <a href="tel:0401786376">tel:0401786376</a>

    2- I could not reproduce the issue, logo is resizing on my end. Which browser are you using?
    3- Please add following code to Quick CSS in Enfold theme options under General Styling tab

    @media only screen and (max-width: 480px) {
    .home #av_section_1 {
      display: none;
    }}

    Best regards,
    Yigit

    #417484
    This reply has been marked as private.
    #418860

    Hey!

    if you want to use a different logo on mobile you can follow this thread: https://kriesi.at/support/topic/different-logo-for-mobile-version/#post-238916
    Please clear your browser cache on your nokia device.

    Cheers!
    Andy

    #418968
    This reply has been marked as private.
    #419729

    Hi!

    Add this to the functions.php file:

    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub) {
        $sub .= "<a class='second-logo' href='#'><img src='http://kompleteaccounting.com.au/wp-content/uploads/2015/02/KAG-340w-drop-shadow.png' /></a>";
        return $sub;
    }

    After that, add this to the Quick CSS field:

    @media only screen and (min-width: 480px) {
    .second-logo { display: none; }}
    @media only screen and (max-width: 480px) { 
    .logo { display: none; }}

    Cheers!
    Ismael

    #419970
    This reply has been marked as private.
    #421278

    Hi!

    Try this.

    @media only screen and (max-width: 480px) { 
    .logo { display: none !important; }}
    

    If that’s not working either then upgrade our login to admin so we can check to see if your doing the edit properly.

    Best regards,
    Elliott

    #421679
    This reply has been marked as private.
    #422174

    Hey!

    Sorry, it looks like your second logo is inside the first logo so the CSS you need is this.

    @media only screen and (max-width: 480px) { 
    .logo > a:first-child { display: none !important; }}

    It should be working now.

    Regards,
    Elliott

    • This reply was modified 9 years, 7 months ago by Elliott.
Viewing 15 posts - 1 through 15 (of 15 total)
  • You must be logged in to reply to this topic.