-
AuthorPosts
-
December 3, 2018 at 12:32 pm #1040243
hello, how to make sure the backgroundpicture is alway covering the background.
now i see on my site that, if the page is very long, the background pic stops displaying.
i dont want it to repeat , as that quite ugly for the fold, but one way or another adapt the pic to the lenght an widht of the page, no matter how long this is?
or is a just a matter of uploading a much bigger / higher pic for the background?December 3, 2018 at 3:56 pm #1040368Hey jelle,
That is not possible unfortunately, if you set it to cover then it likely not look very nice but you can try it out if you like. Otherwise repeat is your only option.
Best regards,
RikardDecember 4, 2018 at 10:54 am #1040664oke, thanks
But if youll have a look here:another problem: the body just stops, while the sidebalk i continuing. This is very ugly.
how can i tell the body to continue as well?
https://screenshots.firefox.com/PGbeGDo2aVGyoQGv/jeelsites.nlDecember 4, 2018 at 7:34 pm #1040872Hi yampieters,
Best regards,
VictoriaDecember 5, 2018 at 9:24 am #1041111Ok, Im not sure i understand what you are saying…
but is it possible to make one way or another give the body always the same height as the sidebar?December 5, 2018 at 2:52 pm #1041230hm – maybe a little jQuery could help.
We had to set the min-height of the wrap_all container to the header hight.Can you try this in child-theme functions.php :
function set_wrap_all_height(){ ?> <script type="text/javascript"> (function($) { $(window).load(function() { var headerH = $('#header').outerHeight(); $('#wrap_all').css({ "min-height": headerH, }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'set_wrap_all_height');
but there is a little time-shift till it works – so maybe a DOM Method will be more effective.
December 11, 2018 at 2:25 pm #1043767thanks Guenni,
the proposed code didnt do much, unfortunately, so ive decided to adapt by hand the few pages that were suffering, just by giving the bottom layout-element some bottom padding.you can close this ticket now, thank you.
December 11, 2018 at 4:38 pm #1043837Hi,
If you need additional help, please let us know here in the forums.
Best regards,
Jordan Shannon -
AuthorPosts
- The topic ‘background pic’ is closed to new replies.