I have styles for the site but don't want them to apply to the footer. How can I achieve this?
HTML CSS Selector
@media(max-width: 500px){
#mobileview{
width:100%;
height:211px;
}
p {
text-align: left;
text-align: justify;
font-size:70%;
}
br {
display: none;
}
h1 {
text-align: left;
font-size:190%;
}
a {
text-align: left;
float:left;
}
a.animation {
text-align: center;
font-size:9px;
float:center;
}
}
This is one of the code for my mobile view.
This is my code when calling footer
<div class="row">
<div class="container2">
XXX Content
</div>
</div>
<?php echo $footer; ?>
How do i exclude these style for footer ? As it was messing with my footer