Archived topic
styling inside-article
1 reply · Started by manaadiar on December 4, 2021
Viewing posts 1–2 of 2
Hi, I used below code to style the articles on my https://shippingandfreightresource.com/articles pls.. But this is also affecting my home page https://shippingandfreightresource.com.. How do I stop this styling on the home page..??
.inside-article {
margin-top: 35px;
background: #fafafa;
border: 1px dotted #888888;
}
.inside-article p {
padding:10px;
}
Hi there,
try this instead:
body:not(.home) .inside-article {
margin-top: 35px;
background: #fafafa;
border: 1px dotted #888888;
}
body:not(.home) .inside-article p {
padding: 10px;
}
This archived topic is closed to new replies.