• Closed
  • Kim Klintworth
    Spectator
    August 9, 2015 at 12:15 pm #19834

    Hi,

    i layouted a website and used the free evolve theme. It looked great, so i desiced to buy the pro version. Now the layout is distroyed. i made all changes like in the free version and it dosn’t work.

    So my new pro Layout dont get boxed. The Header and content are boxed, only the menu and footer don’t want to get in their boxed layout. so icant see the backround right and left of the screen. i really try all differnet settings.

    i’m confused, because the free version worked very fine.

    yo want to have a look: http://dammann.spdns.de:8070/

    maybe someone can help me

    Kim Klintworth
    Spectator
    Posts: 13
    August 10, 2015 at 7:07 pm #19880

    yes, that wokes fine – only the media screen isn’t nice. the header picture dont fit to the smaller screen and i can zoom in and out so that destroyed my layout. how can i fix that?

    so kind all of you help me 🙂

    Denzel Chia
    Moderator
    Posts: 2656
    August 10, 2015 at 7:56 pm #19883

    Hi Kim,

    Your hunch about something is wrong in header.php is correct. I found the bug. Please read this thread for explanation. https://theme4press.com/support/topic/menu-hover-effect-not-working-in-my-1-9-0-evolve/page/2/#post-19881

    You may want to remove the unnecessary custom css codes provided to fix the boxed layout.

    I did not log into your WordPress admin to do any modification.
    If you need my help, Please give me a shout, if not, it’s fine with me if you prefer to keep your custom css modifications.

    For your information, In version 2.0.0, We only replace the Theme Options to use Redux Framework, we did not modify any design layout. Version 2.0.1 is a bug fix version.

    Thanks!
    Denzel

    Kim Klintworth
    Spectator
    Posts: 13
    August 10, 2015 at 9:21 pm #19887

    Hi,

    just prove the other post and try the media screen thing, but nothing happend. in Free evolve all worked fine. so in the pro the header don’t fit and the screen can move – just have a look: http://www.responsinator.com/?url=dammann.spdns.de%3A8070%2F

    only the option : header image background responsive style on contain let the header be smaller in media screen, but put don’t fit in the normal website screen.

    mh, so the second big problem is, that the design is movable in mediascreen?

    xxx
    kim

    Denzel Chia
    Moderator
    Posts: 2656
    August 16, 2015 at 5:41 am #19896

    Hi,

    Sorry for late reply. Our forum was down for a few days.

    You mentioned that in Free Evolve Theme all worked fine, Please see my previous reply. I mentioned that there is a bug with the Evolve Plus Theme, which is why your layout was broken. You should remove all the custom css given, and use the following solution to fix the bug.

    In header.php at line 48 to 60, The following code is wrong.

    <?php $evolve_social_links = evolve_get_option('evl_social_links','1'); if ( $evolve_social_links == "1" ) { ?>

    <!--BEGIN #righttopcolumn-->
    <div id="righttopcolumn">

    <!--BEGIN #subscribe-follow-->

    <div id="social">
    <?php get_template_part('social-buttons', 'header'); ?>
    </div>

    <!--END #subscribe-follow-->
    <?php } ?>

    Should be as follows. So that the div #righttopcolumn does not get removed when social links are disabled in header, and broke the structure.

    <!--BEGIN #righttopcolumn-->
    <div id="righttopcolumn">

    <?php $evolve_social_links = evolve_get_option('evl_social_links','1'); if ( $evolve_social_links == "1" ) { ?>

    <!--BEGIN #subscribe-follow-->

    <div id="social">
    <?php get_template_part('social-buttons', 'header'); ?>
    </div>

    <!--END #subscribe-follow-->
    <?php } ?>

    In my previous reply I had point to you the following link which has a solution for the same issue on your site, customer replied that everything was fixed after I applied the solution.
    https://theme4press.com/support/topic/menu-hover-effect-not-working-in-my-1-9-0-evolve/page/2/#post-19881

    You mentioned that there is no FTP access, therefore I cannot apply the fix for you.

    I would like to inform you that, custom CSS cannot solve your issue properly because HTML is broken, you should revert and apply the fix, then we can iron out any remaining CSS issue efficiently.

    Hope my explanation is clear.

    Sorry for all this inconveniences.
    Looking forward to your reply.

    Thanks!