Hi there,
That’s correct, but based on your initial question
I just want to increase the padding at the top a little on desktop, and remove padding on tablet/mobile view.
You wished to remove padding on tablet/mobile view. If you wish to retain the padding this time, please change this
@media ( min-width: 980px ) {
.x-topbar-inner > .topbar-text {
padding: 10px 0px;
}
}
.x-topbar-inner > p:empty {
display: none;
}
to this
.x-topbar-inner > .topbar-text {
padding: 10px 0px;
}
.x-topbar-inner > p:empty {
display: none;
}
Just like @Jade said, just remove the @media block.
Thanks!