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

    Hi,

    I have searched throughout the forum and have tried multiple CSS fixes to resolve the issues I’m having, but I haven’t found a solution just yet.

    When viewing the below post in Google Chrome, the right sidebar color does not fill all the way down.

    When viewing the below post in IE, the right sidebar color is not filled in as it is in Chrome, and does not fill all the way down.

    Any ideas?

    Thanks,
    Chris

    #648949

    Hey Chris,

    Thank you for using Enfold.

    The sidebar height is shorter compare to the main content. You have to create a script that will get the height of the main content and then apply it to the sidebar. Example here: https://kriesi.at/support/topic/how-can-i-add-a-border-change-background-of-sidebar-widgets/#post-594239

    Best regards,
    Ismael

    #652692

    Hi Ismael,

    I followed the instructions on the above post and am still having some issues. See the image below:

    https://snag.gy/D43qvR.jpg

    Please advise.

    Thanks,
    Chris

    #652729

    Hi!

    Please provide us a link of your web site so we can be able to provide the code needed

    Best regards,
    Basilis

    #652768

    Hi Basilis,

    My website can be found at http://rocketleads.net. More specifically, the blog posts, category pages, keyword pages, etc., can be found at http://rocketleads.net/blog.

    I have also provided the login in the private data field.

    Thanks,
    Chris

    #654046

    Hi,

    Please update the code:

    add_action( 'wp_footer', 'ava_custom_script' );
    function ava_custom_script() { ?>
    	<script type="text/javascript">
    	(function($){
    		var a = function() {
    			var ch = $('.container .av-content-small.units').height();
    			$('#top #main .sidebar ').css('height', ch);
    		}
    
    		a();
    	})(jQuery);
    	</script>
    	<?php
    }

    Best regards,
    Ismael

    #654243

    Hi Ismael,

    Thanks! I’m still having formatting issues with the sidebar in Chrome and IE.

    I have been using the following blog post for testing:

    Thanks,
    Chris

    #655946

    Hi,

    You forgot to update the code. We updated it and then removed a few css modification in the Quick CSS field. Please remove browser cache before checking the page.

    Best regards,
    Ismael

    #657499

    Hi Ismael,

    Thanks. All appears to be working fine on Google Chrome, but IE 11 and Microsoft Edge seem to be having some issues. The “HOME” menu item still highlights and the right side of the blog sidebar is not filled in. See the image below:

    https://snag.gy/0Pe34Q.jpg

    #658656

    Hi,

    The sidebar height adapts to the content height now. Replace the css gradient with the following:

    .container_wrap.sidebar_right {
        background: -webkit-gradient(linear,right top,left top,color-stop(#f1f1f1,0.295),color-stop(white,0));
        background: -webkit-linear-gradient(right,#f1f1f1 29.5%,white 0);
        background: -moz-linear-gradient(right,#f1f1f1 29.5%,white 0);
        background: -o-linear-gradient(right,#f1f1f1 29.5%,white 0);
        background: linear-gradient(to left,#f1f1f1 29.5%,white 0);
    }

    If it’s not working, try this:

    .container_wrap.sidebar_right {
        background: -webkit-gradient(linear,right top,left top,color-stop(#f1f1f1,0.295),color-stop(white,0));
        background: -webkit-linear-gradient(right,#f1f1f1 29.5%,white 0);
        background: -moz-linear-gradient(right,#f1f1f1 29.5%,white 0);
        background: -o-linear-gradient(right,#f1f1f1 29.5%,white 0);
        background: -ms-linear-gradient(to left,#f1f1f1 29.5%,white 0);
        background: linear-gradient(left,#f1f1f1 29.5%,white 0);
    }

    Best regards,
    Ismael

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