Tagged: ,

Viewing 19 posts - 1 through 19 (of 19 total)
  • Author
    Posts
  • #1323910
    #1323935

    Hi Steve,

    I was about to open a new thread about this.
    When you set the header to a custom height since 4.8.6.4 it is no longer applying a fixed height on mobile devices below 989px wide.

    I.e. I have a couple of sites with a 160px header and I can confirm they are now 160px on mobile devices instead of 90px on tablets and 80px on mobiles.

    Add the following to Quick CSS to restore the usual heights on mobiles. This is a temporary fix.

    @media only screen and (min-width: 768px) and (max-width: 989px) {
    .responsive .logo a {
    height:90px !important;
    }
    }
    
    @media only screen and (max-width: 767px) {
    .responsive .logo a {
    height:80px !important;
    }
    }
    • This reply was modified 3 years, 1 month ago by thinkjarvis.
    #1323953

    Thanks @ThinkJarvis

    That saved me some time 👍

    #1323956

    Hi,


    @thomasjarvisdesign
    Thanks for sharing your solution!

    Our devs have fixed this issue and it will be included in upcoming update :)

    Best regards,
    Yigit

    #1323966

    Hi Yigit, thanks for following up on this thread. I assume you mean this change will be included in a version subsequent to the newly released 4.8.6.5? Do you have any idea when this is going to occur? It is somewhat disappointing needing to go through over 20 web site updates only to need to do it again in under a week.

    Considering most web traffic is at almost 90% nowadays, mobile rending is mission critical for a lot of us and I think many Enfold users have chosen custom header heights.

    #1323979

    Hi,

    We are sorry for the inconvenience! Yes, it will be included in 4.8.6.6.
    The issue is caused by a missing comma in layout.css file and /enfold/css/layout.css file needs updating. Here is the updated layout.css file – https://raw.githubusercontent.com/KriesiMedia/enfold-library/master/temp_fixes/Enfold_4_8_6_5/css/layout.css. If you have not updated all sites, please update layout.css file on Enfold 4.8.6.5, zip enfold folder and upload them on your sites.

    Regards,
    Yigit

    #1325948

    Hi, do we know when 4.8.6.6 is coming out? I would prefer to wait for that update to update my theme vs. working with interim code.

    Thanks!
    Rob

    #1325950

    I FTPd the layout.css to the Enfold parent folder (subdirectory css) and it did not fix the logo issue. I guess I’ll roll back to the earlier version of Enfold.

    #1325953

    I’ll follow up too on asking when 4.8.6.6 is expected. Kindly supply a date.

    #1326005

    Just out of curiosity, if the layout.css is the only file that is the issue then why has it been 15 days with no Theme update for this one file fix?

    Also, I just paid for a year of support to find out it is not my issue. So, I’m not particularly happy about that.

    I do appreciate what you guys do though.

    Thanks,

    Jas

    #1326015

    As long as none of the other bugs have negatively affected your site – Instead of rolling back, just add the following to quick CSS. Its quicker.

    I have upgraded a few sites to 4.8.6.5 and have not noticed any problems other than this so it depends which Enfold functions you use.

    @media only screen and (min-width: 768px) and (max-width: 989px) {
    .responsive .logo a {
    height:90px !important;
    }
    }
    
    @media only screen and (max-width: 767px) {
    .responsive .logo a {
    height:80px !important;
    }
    }

    Take a look at the release schedule. I dont think the team have plans for a 4.8.6.6.

    Looks like we are going straight to 4.8.7
    https://kriesi.at/support/topic/enfold-upcoming-fixes/

    There are a number of fixes being implelemented I assume that in the background the rest of the fixes and tweaks are almost complete – Hence no 4.8.6.6

    I just hope that in the meantime people who have just purchased Enfold are not upset by the current bugs.

    #1326068

    Hi,


    @goldengate415
    Are you using SVG Support plugin? I had to re-create SVG file and re-upload it for some users who were using this plugin so that might be the case :)


    @manhattanctr
    We do not have an ETA yet however we will announce it on the forum sidebar as soon as we do :)


    @Jasmer
    it is not the only fix/change that is going to be included in upcoming update. You can check out – https://kriesi.at/support/topic/enfold-upcoming-fixes/ for all upcoming changes :)


    @thomasjarvisdesign
    thanks for sharing the quick fix :)

    Best regards,
    Yigit

    #1326109

    Hi Yigit, I am not using the SVG support plugin. I’m wondering if some of the css files were minified and somehow cached. Also there’s some custom programming on my header… see header.php in private content. I also have some custom in functions.php:

    * Rob adding custom code from Enfold support to add widget area to header.
    */
    add_action( ‘ava_main_header’, ‘enfold_customization_header_widget_area’ );
    function enfold_customization_header_widget_area() {
    dynamic_sidebar( ‘header’ );
    }

    I also included style.css as there’s a lot of header customization there. I was thinking if the next release breaks my header then I would open a support ticket and provide login credentials. It would be great however if you can scan the code I have uploaded to see if there’s a problem with the code vs. where Enfold is going with the header.

    Thanks!!
    Rob

    #1326125

    I have the same problem. I have updated Enfold to the latest version and now the logo is really big on mobile.


    @thomasjarvisdesign
    thank you for sharing the quick fix. I’ve added it on CSS of Enfold Child, but nothing change. It is still big.
    Please can someone help me.

    I’ve added this:

    @media only screen and (min-width: 768px) and (max-width: 989px) {
    .responsive .logo a {
    height:90px !important;
    }
    }

    @media only screen and (max-width: 767px) {
    .responsive .logo a {
    height:80px !important;
    }
    }

    #1326129

    Yes @Yigit of course. However, what is the harm in pushing an update with the one change to address the mistake immediately to solve everyone’s problem instantly? Perhaps it cost Kriesi more money for every update you push to Themeforest? DO they charge per update?

    #1326744

    Do we expect this to push out this week?

    #1326745

    4.8.7 released today, resolved this issue along with a load of other fixes and improvements.

    #1326746

    Wow that was a scoop! It’s not even on the change log yet… but you’re right, it does fix this issue. Seems to be running well on my website.
    Also noted that my site seems much faster after this update? I’ll be interested to read the change log when it’s updated.

    #1327295

    Hi,

    Change log was updated on the weekend – https://kriesi.at/documentation/enfold/changelog/ :)

    Best regards,
    Yigit

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