Helix Ultimate - Two Columns On Tablet Portrait View - Question | JoomShaper

Helix Ultimate - Two Columns On Tablet Portrait View

M

Marin

Helix Framework 1 year ago

Is there any way to display the blog view page on Helix Ultimate in two columns on tablet portrait view? Currently, on landscape view, I have two columns with articles, and I want to have it the same way on portrait (the only difference is that on portrait view modules go under content).

0
5 Answers
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #156617

Hi Marin,

Almost all is possible if you know how it works and how to customize it.

I guess, we talk about section "Aktualno" and similar with Article list view , if yes, please use that custom CSS

@media screen and (min-width: 680px) {
 .article-list > .cols-2 >  .col-lg-6 {width: 50%;}
}

Remember to Disable CSS Compression in Template Options BEFORE adding that Custom CSS, later you can turn it On again, and clear Cache.

0
M
Marin
Accepted Answer
1 year ago #156660

Hi Paul, that works well! :) Thank you.

Is it also possible to split the top bar (above the menu bar) so that modules are left and right (not one under the other)? Just like on desktop view. Also just on tablet (I have set to hide top bar on phones).

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #156661

I guess you have predefiend header , so in that case Extra CSS is needed. With Custom Header you can do that just from settings.


For both tasks you can use general common code:

@media screen and (min-width: 680px) {
 .article-list > .cols-2 >  .col-lg-6, #sp-top1, #sp-top2  {width: 50%;}
}
1
M
Marin
Accepted Answer
1 year ago #156674

Thank you for help. Everything is working :)

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #156694

I'm glad to hear that. Have fun.

0