Tagged: 

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

    Hi Kriesi team!

    I used modified grid.css file before update and it worked well (I needed larger container). But after I had done some changes of the theme on the wordpress dashboard and pressed button “Save all changes” my modified grid.css didn’t work anymore, even if I restored the theme.
    After I had replaced grid.css and grid.less files with new only grid.css file from Enfold update, I faced with sidebar problem. Sidebar is located below content now, but should be on the right side.
    I will keep the updated website for a while so you can see the problem, but I will restore old grid.css and grid.less files soon.
    Here is also a screenshot:
    Sidebar screenshot

    #348564

    Hey Speedskater!

    Thank you for using Enfold.

    The grid system has been modified on the latest update of the theme. It is now percentage base so to speak. I’m afraid you need to edit the grid.css file again. You can toggle the maximum container width and content/sidebar ratio on Enfold > General Layout > Dimensions panel.

    Cheers!
    Ismael

    • This reply was modified 9 years, 4 months ago by Ismael.
    #348655

    Hi Ismael!

    Yes, I now that grid system has been modified. And I did try to edit container width and content/sidebar ratio at dimensions panel. I can only see the changes of the width, but sidebar is below content anyway.

    #348671

    Even if I try to replace the whole css folder with the default one from update it doesn’t work.

    • This reply was modified 9 years, 4 months ago by Speedskater.
    #349281

    Hey!

    Did you remove the grid.css modifications? I’m afraid, you can’t use it anymore unless you modify it again. Also, did you modify the sidebar width before? Do you have a code that looks something like this?

    function avia_increase_sidebar_size() {
    	global $avia_config;
    	
    	$avia_config['layout']['fullsize'] 		= array('content' => 'twelve alpha', 'sidebar' => 'hidden', 	 'meta' => 'two alpha', 'entry' => 'eleven');
    $avia_config['layout']['sidebar_left'] 	= array('content' => 'eight', 		 'sidebar' => 'four alpha' ,'meta' => 'three alpha', 'entry' => 'eight');
    $avia_config['layout']['sidebar_right'] = array('content' => 'eight alpha',   'sidebar' => 'four alpha', 'meta' => 'three alpha', 'entry' => 'eight alpha');
    }
    add_action( 'init', 'avia_increase_sidebar_size', 1);

    Please remove it.

    Best regards,
    Ismael

    #349692

    Thanks for help, Ismael!

    There wasn’t anything like the code above, but the problem was with functions.php file. When I updated the file, I didn’t replace some lines.
    Now almost everything is fine. The only problem is header. Something strange with default code from grid.css

    .container {
      position: relative;
      width: 100%;
      margin: 0 auto;
      padding: 0px 50px;
      clear: both;
    }

    Padding applies only to content area, but it doesn’t apply to header. I checked with Firebug – padding actually applies, but the text of the header lays over padding.

    #351055

    Hi!

    I’m sorry but you’re using an old version of the theme, 3.0.1. Please download the latest version 3.0.2 from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    The header markup is a bit different from the default theme structure. Did you modify header.php? How did you add the h3 tag on the logo? It should be enclosed in a strong tag by default.

    Best regards,
    Ismael

    #351216
    This reply has been marked as private.
    #351695

    Hey!

    Thank you for the update.

    You have to commend out the default avia logo on helper-main-menu.php file:

    echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', $addition, 'strong', true);
    

    Replace it with:

    //echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', $addition, 'strong', true);
    

    Regards,
    Ismael

    #351724

    Thank you Ismael! The problem is solved. Kriesi support is perfect as usual!

    Best regards,
    Evgeny

    • This reply was modified 9 years, 4 months ago by Speedskater. Reason: Problem is solved
Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Sidebar problem after update’ is closed to new replies.