-
AuthorPosts
-
June 13, 2016 at 4:56 pm #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,
ChrisJune 16, 2016 at 4:12 am #648949Hey 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,
IsmaelJune 23, 2016 at 7:28 pm #652692Hi Ismael,
I followed the instructions on the above post and am still having some issues. See the image below:
Please advise.
Thanks,
ChrisJune 23, 2016 at 9:01 pm #652729Hi!
Please provide us a link of your web site so we can be able to provide the code needed
Best regards,
BasilisJune 23, 2016 at 10:45 pm #652768Hi 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,
ChrisJune 28, 2016 at 5:07 am #654046Hi,
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,
IsmaelJune 28, 2016 at 3:17 pm #654243Hi 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,
ChrisJuly 2, 2016 at 1:38 am #655946Hi,
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,
IsmaelJuly 6, 2016 at 2:59 pm #657499Hi 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:
July 9, 2016 at 2:37 am #658656Hi,
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 -
AuthorPosts
- You must be logged in to reply to this topic.