Page 1 of 1

Content in more columns

Posted: Fri Aug 09, 2019 7:46 pm
by Tata
Here I test little rebuilt teplate with:

Code: Select all

	.content{
		width: 75%;
		min-height: 50vh;
		padding-right: 2rem;
		float: left;
			line-height: 1.3;
			font-size: 1rem;
			text-align: justify;
		   -moz-column-count: 3;
	       -moz-column-gap: 4rem;
	       -webkit-column-count: 3;
	       -webkit-column-gap: 4rem;	
		    -webkit-column-rule: 1px outset #999; /* Chrome, Safari, Opera */
		    -moz-column-rule: 1px outset #999; /* Firefox */
		    column-rule: 1px outset #999;
	}
Basically everything works fine. But the 3-column design makes up&there problems. And I am not sure, wether the problem is in CSS or in used hi-fancybox plugin. Have a look e.g. at https://cmsimple.sk/newspaper_xh_tpl/?Images. Even if reading manuals, I am not able how to create/use categories and articles within the categories. Especially with the first used miniblog plugin.

Re: Content in more columns

Posted: Sat Aug 10, 2019 7:48 am
by frase
Tata wrote:
Fri Aug 09, 2019 7:46 pm
But the 3-column design makes up&there problems. And I am not sure, wether the problem is in CSS or in used hi-fancybox plugin. Have a look e.g. at https://cmsimple.sk/newspaper_xh_tpl/?Images.
The problem with the images is that they have the CSS class "left".
If you remove this class, the arrangement of the images will work at least on the "?Images" page.

Re: Content in more columns

Posted: Sat Aug 10, 2019 9:50 am
by Tata
Thanks a lot.