Change margin and padding in media query

Hello,

I'd like to change the margin and padding of some subjects when someone visits my homepage with smartphones ortablets with the help of media queries. For example if the picture of the chef on your restaurant 2 page has a margin-top of -60px on desktop view, I would like to change that margin top to 0px on smartphone view, so that it doesnt overlap with the slider. When i inspect the code it says
<div class="wrap mcb-wrap one-second valign-top clearfix" style="margin-top:-60px">
I have literally no experience in CSS but I guess my only idea how to solve this issue by using the following code is totally wrong. But im not quite sure what else I could do to remove that margin on specific display widths.

@media only screen and (max-width: 767px) 
{
.wrap, .mcb-wrap, .one-second, .valign-top, clearfix {margin-top:0}
}

Thanks in advance.

Comments

Sign In or Register to comment.