On a given page, when I open, I need to remove margin
from class content
to stay as I want.
CSS:
.three-columns .content {
margin: 20px 250px 0 250px;
}
.content {
margin: 20px 0 0 250px;
}
I'm trying to go through jquery
when doing:
$("#three-columns:content").css({ 'margin': ' 10px 10px 10px 10px' }); //Sei que o erro está aqui
$("#content").css({ 'margin': ' 10px 10px 10px 10px' });
What I want is to remove / change the margin
from .three-columns .content
and .content