- This topic has 1 reply, 2 voices, and was last updated 4 years, 9 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Support › Forums › Sunshine Pro Theme › Make responsive category pages
Hi
Thank you for the answer. Css you sent me:
.category .entry {
width: 50%;
float: left;
padding: 1% 2.8%;
}
works correctly.
Howeveer it isnt a responsive page like blog page. I need to make it responsive. I have been looking for blog css to copy in .category .entry but i dont find it.
Could you help me?
Thank you
Emerio
To make it responsive, is style.css file.
1. Below this…
@media only screen and (max-width: 800px) {
2. Add this…
.category .entry {
width: 100%;
padding: 0;
}