Currently tackling a responsive website design challenge where I'm dealing with conflicting styles in media queries and parent css.
Here's the CSS from the parent style sheet:
.sec1 p {
text-align: left;
width: 55%;
margin-left: 8%;
float:left;
margin-top: 100px;
}
On the 768 width devices, here's what I tried:
.sec1 p {
letter-spacing:normal;
word-spacing:normal;
font-size: 1.1em;
width:none!important;
margin-left:none!important;
margin-top:none!important;
text-align:inherit!important;
}
Attempted to set width to none and remove margins, but not sure if it's the right approach,
Clearly struggling with unwanted styling effects, how can I resolve this?
Hope my question is clear! Thanks for the help!