Viewing 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • #875702

    Hi guys,

    I was busy with an website but i habe 2 pages the blog and portfolio who arent resppnsive on mobile.

    Normally you see the sidebar for example at the bottom and everything is under eachother but i cant find what is wrong.

    Maybe yall can help me out

    It is about webadmin.lt

    #875857

    Hey Angelo,

    You are not using a sidebar, but a column of the grid.
    What is the problem exactly, can you define for us?

    Best regards,
    Basilis

    #876147

    If you go to; http://webadmin.lt/blog/ on mobile
    You see the content of the content section isnt in the middle.
    Also the gridrow 3/4 and 1/4 ar shown next to eachother on mobile wich should not be the case because now you see a half widget erea display on mobile see screenshots

    #876947

    Hi,

    Normally you see the sidebar for example at the bottom and everything is under eachother but i cant find what is wrong.

    It’s not responsive because some of the grids and sections are outside the wrap_all container. Please add this script in the functions.php file.

    function ava_custom_script_fix(){
    ?>
    <script>
    (function($){
    	function a1() {
    		var grid = $('body').children('.av-submenu-container, .avia-section, .av-layout-grid-container, .av-tab-section-container, #footer');
    		$(grid).appendTo('#wrap_all #main');
    	}
    
    	a1();
    	
    	function a2() {
    		var child = $('.avia-section, .av-layout-grid-container').find('.avia-section, .av-layout-grid-container, #footer, .av-submenu-container'),
    			parent = child.parents('.avia-section, .av-layout-grid-container');
    
    		child.insertAfter(parent);
    	}
    
    	a2();
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'ava_custom_script_fix');

    Best regards,
    Ismael

    #877436

    Thanks! this works on those two pages blog and portfolio, but i still got one page http://webadmin.lt/our-story/ wich should be like https://kriesi.at/themes/enfold-startup/our-story/

    How can we fix this?

    #877471

    Hi,

    I have checked the page you mentioned but I don’t see anything wrong, as you have described above. Can you post a screenshot?

    Best regards,
    Nikko

    #878442
    #879263

    Hi,

    I’ve compared both and your site has the masonry gallery inside the color section while https://kriesi.at/themes/enfold-startup/our-story/ has the masonry gallery after the color section.

    Best regards,
    Nikko

    #879941

    That’s the point.. it is not in the color section as it should be.

    #880004

    Hi,

    Can you give us temporary admin access? so we can check further.

    Best regards,
    Nikko

    #880126

    Yes offcourse!

    #880139

    Hi,

    Thanks for giving us admin access, I’m not really sure why it’s going inside color section but I have inserted the masonry gallery to a gridrow and remove the paddings and it should look like the demo. Let us know if you need further assistance :)

    Best regards,
    Nikko

    #880154

    Thanks nikko!

    One gallery looks the same. But other has green space and menu on mobile is at the bottom of the page.

    I never have experienced this with enfold before to me it looks like a wrong instalation or something.

    #880861

    Hi,

    Are you referring to the image in private content? also for the menu, you can add this css code in Quick CSS (located in Enfold > General Styling):

    @media only screen and (max-width:767px) {
      #sub_menu2 {
        display: none;
      }
    }

    Best regards,
    Nikko

    #881693

    See PM

    #881816

    Hey!

    We modified the filter above. Please try it again. Or post the login details in the private field so that we can test it.

    Regards,
    Ismael

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