WebsiteBaker 2.13.7 is now available!
R.I.P Dietmar (luisehahne) and thank you for all your valuable work for WBhttps://forum.websitebaker.org/index.php/topic,32355.0.html
body { background: #69587A;
.contentbox { background: #787982; }
<!-- <div class="leftbox"></div> -->
You should give your body a margin: 0 and padding: 0Every browser use their own margins, so you have to overwrite this.
body { background: #69587A /*url(img/bodybg.jpg) repeat-x 0 0 (Im Hintergrund liegt eine Grafik am oberen Rand an, die einen Verlauf hat)*/; margin: 0; padding: 0; height:100%; width:100%;}
.parallax-mirror { z-index: 0 !important;}
The problem is that when parallax is used, the hero images are positioned behind "everything". The trick is that this image is absolute positioned when scrolling the page.Therefore the layers that become above the parallax image (the contentbox) cannot have a background.
When parallax is not used, the image wil be in the standard order of html layers, and you should not have any problems
Alternative it might work to force the parallax images to a higher z-index using this line in your stylesheet (template.css)Code: [Select].parallax-mirror { z-index: 0 !important;}
Do you expect any problems?If so, in what regard/department?
Now the <div> for this image has z-index:0 , there could be other elements in the template using higher z-index'es making the trick not work.
If it works, it works
<div id="Sec4" class="section m_wysiwyg" > ...your content ... </div>
.content .m_wysiwyg { padding: 30px;}
WB puts a <div> around every section that generates content with the name of the module that was used.So if you want to do something special for the wysiwyg blocks you can use that feature.example WB output:Code: [Select]<div id="Sec4" class="section m_wysiwyg" > ...your content ... </div>In there you can modify the behavour usingCode: [Select].content .m_wysiwyg { padding: 30px;}
<p><img alt="Portrait Christiane Meusel" class="img-responsive" src="http://www.christianemeusel.de/media/bilder/portraitcm.png" style="border-style:solid; border-width:0px; float:left; height:415px; margin:15px 25px 25px 0px; width:312px" /></p>
Any idea, where this is coming from?
Quote from: Legaziofunk on January 03, 2020, 02:43:19 PMAny idea, where this is coming from?Probably the 13Mb of images that needs to be loaded.Most hero images you are using are very large (+4000px width). You should make them much smaller. (Your max viewport is 1200px)Next use an (online) image optimizer to make them as small (in Kb) as possible.
.section { clear: both;}
Using floats always give undesired results. You could try to clear the floats for every "new" section.Code: [Select].section { clear: both;}That might help.