You can add this on Frontier Options -> Custom CSS
#content article {
background-color: #777777;
}
How do I remove the box and shadow from that same page?
I saw you posted this for a different question:
article.blog-view, article.single-view, {
border: none;
box-shadow: none;
}
But that didn’t work for this.
But that didn’t work for this.
I’m looking at your article and it doesn’t have any border or box-shadows. You’re probably referring to something else.
You also have redundant css. You can just remove the first one and change the 2nd background color to #777777.
#content article { background-color: #777777; }
article { background-color: #F5F5F5; border: none; box-shadow: none; margin: 0; padding: 0;}
I made an image and circled a portion of the border I’m referring to that I want to get rid of:
View post on imgur.com
Looking at your image, that box-shadow is on the main container itself, so try this in your custom CSS plugin:
#container {
box-shadow: none;
}
That’s it! You’re the best!
how can i change the color outside the content box but inside the main area
precisionadplacement.com – i want to change the bright yellow…thanks