Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Are you familiar with CSS?
unfortunately know but I’m willing to learn some CSS to resolve this issue.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Let’s see the webpage in question
The site I’m working on is http://directflix.net/movies
I would like the post/videos to be in columns, three columns as I add more videos it would look like this
x x x
x x x
x x x
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Install this Custom CSS Manager plugin http://wordpress.org/plugins/custom-css-manager-plugin
Then use its “CSS Code” section of the dashboard to hold your CSS modifications:
@media screen and (min-width: 745px) {
.site-content article {
width: 30%;
float: left;
margin-left: 20px;
}
}
This is perfec thank you very much, how can I make this code work for a specific page rather than all pages?
Thank you it is exactly what I needed
i thought it would be this but its not
.http://directflix.net/movies/.
@media screen and (min-width: 745px) {
.site-content article {
width: 30%;
float: left;
margin-left: 20px;
}
}
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Which page do you want it to work on?
u may make custom post template, then add the custom CSS code to shape it the way you like, or custom category template.