Any shortcode for change column?
-
Hi, this plugin really helpful for my website. I just want to give some feedback, if the plugin comes with a some options to change the column. I just modify your plugin from 3 column to 1 column displayed post.
I change css code
.am__col-3 .am_grid_col {
-ms-flex: 0 0 33.333333%;
-webkit-box-flex: 0;
-webkit-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%;
margin-bottom: 30px;to:
.am__col-3 .am_grid_col {
-ms-flex: 0 0 33.333333%;
-webkit-box-flex: 0;
-webkit-flex: 0 0 33.333333%;
flex: 0 0 100%;
max-width: 100%;
margin-bottom: 30px;for displaying 1 column
or displaying 2 column with this:
.am__col-3 .am_grid_col {
-ms-flex: 0 0 33.333333%;
-webkit-box-flex: 0;
-webkit-flex: 0 0 33.333333%;
flex: 0 0 100%;
max-width: 50%;
margin-bottom: 30px;I struggle with this plugin because just only displaying one kind type of column. I hope the contributor can add some shorcode to change many type of column.
Is it possible to add new array
'col' => "3"
as default? and the options are: 1,2,3,4col=”1″ is max-width:100%
col=”2″ is max-width:50%
col=”3″ is max-width:33.3333%
col=”4″ is max-width:25%to replace
am__col-3
at ‘<div class=’am_post_grid am__col-3 am_layout_{$layout}’>’
I just know CSS a little, but know nothing with PHP. I hope the contributor can help me. Thank you in advanceThe page I need help with: [log in to see the link]
- The topic ‘Any shortcode for change column?’ is closed to new replies.