1. rebelojose
  2. Sherlock Holmes
  3. Commercial Templates
  4. Saturday, 29 March 2025
  5.  Subscribe via email
Dear Ciaran,

is possible reduce vertical space between modules Top-2a and Top-2b only on mobile version
I try w/ this code but not work

@media only screen and ( max-width: 767px ) {
.top-2b, {
padding-top: 20px;
}
}


best regards
Attachments (1)
Accepted Answer Pending Moderation
0
Votes
Undo
Try this one:

@media screen and (width <= 767px) {
.top-2b {
padding-top: 20px;
}
}

But without a URL, it's difficult to guess. Maybe you need "margin-top" instead of "padding-top".
Accepted Answer Pending Moderation
0
Votes
Undo
Tks Ciaran for your reply and your help

it worked w/ this

@media screen and (width <= 767px) {
.top-2a {
margin-bottom: -60px;
}
}


url attach

best regards
References
  1. https://www.pinguim.com.pt/ementa/ementa-semanal
Accepted Answer Pending Moderation
0
Votes
Undo
It hasn't been Ciaran, who answered to your post, but anyway: You got a solution ;)
Accepted Answer Pending Moderation
0
Votes
Undo
Ups! Sorry Dautrich :)

Many tks dautrich

I not notice that is you :(
  • Page :
  • 1


There are no replies made for this post yet.
Be one of the first to reply to this post!