OrdaSoft forum
Welcome, Guest
Please Login or Register.    Lost Password?
Blog view of joomla articles (0 viewing) 

OrdaSoft template Support

Go to bottom Favoured: 0

Blog view of joomla articles

hansel (User)
Gold Boarder
Posts: 244
graphgraph
User Offline Click here to see the profile of this user
Blog view of joomla articles 9 Months, 3 Weeks ago
Karma: 0  
Is there any possibility to show a blog view of common joomla articles in a 2 or 3 coloumn layout?

All ordasoft templates I have tried show the blog articles in a single column only even if I set the settings of blog cloumns to 2 or 3.
Logged Logged
The administrator has disabled public write access.
admin (Admin)
Admin
Posts: 8367
graph
User Offline Click here to see the profile of this user
Re:Blog view of joomla articles 9 Months, 3 Weeks ago
Karma: 102  
Hello
Please add below code to your Template CSS file:

Code:

.pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}

.pagination>ul {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.pagination>ul>li {
  list-style: none;
  margin: 0 10px;
}

.cols-2,
.masonry-2,
.cols-3,
.masonry-3,
.cols-4,
.masonry-4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cols-4>div,
.masonry-4>div {
  width: 24%;
  margin-bottom: 20px;
}

.cols-3>div,
.masonry-3>div {
  width: 32%;
  margin-bottom: 20px;
}

.cols-2>div,
.masonry-2>div {
  width: 49%;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {

  .cols-4>div,
  .masonry-4>div {
    width: 32%;
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {

  .cols-3>div,
  .masonry-3>div,
  .cols-4>div,
  .masonry-4>div {
    width: 49%;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {

  .cols-2>div,
  .masonry-2>div,
  .cols-3>div,
  .masonry-3>div,
  .cols-4>div,
  .masonry-4>div {
    width: 100%;
    margin-bottom: 20px;
  }
}



Regards
OrdaSoft team
Logged Logged
The administrator has disabled public write access.
hansel (User)
Gold Boarder
Posts: 244
graphgraph
User Offline Click here to see the profile of this user
Re:Blog view of joomla articles 9 Months, 3 Weeks ago
Karma: 0  
It doesnt work.
Logged Logged
The administrator has disabled public write access.
admin (Admin)
Admin
Posts: 8367
graph
User Offline Click here to see the profile of this user
Re:Blog view of joomla articles 9 Months, 3 Weeks ago
Karma: 102  
Hello

Could you give to us
full FTP and supper admin access
and our team will find solution special for You, FTP and admin access You can send to our contact form.
ordasoft.com/contact-us-form

We need:

Link to website.
Detail description: How reproduce error. Step by step. Detail description: how we may reproduce this.

Site Super Admin:
username
password

FTP:
FTP host
FTP username
FTP password

Thanks,
OrdaSoft team.
P.S. Please do site backup 2 times per month, it will save you a lot of problems in the future.
Logged Logged
The administrator has disabled public write access.
Go to top
»