When I pull up my portfolio grid on a mobile device such as the iPad a lower border line is showing up (see image) How do I remove the lower border line I have highlighted in the image so that area remains white? I think it has to do with some of the titles for the galleries go to 2 lines on smaller screens and this is when the lower border appears. Thanks in advance!
Hey djshortkut!
Please add following code to Quick CSS
@media only screen and (max-width: 480px) {
#top div .no_margin { margin-bottom: 0!important; }}
Best regards,
Yigit
This didn’t work
Hi!
If possible, post the url of the actual page with the issue. You can set a min height for the grid content container:
@media only screen and (max-width: 1024px) {
.grid-entry.isotope-item .grid-content {
background: #ffffff;
min-height: 68px;
}
}
Or decrease the font size of the portfolio title:
@media only screen and (max-width: 1024px) {
.grid-entry-title {
font-size: 11px;
}
}
Cheers!
Ismael
Hi!
use this line before css changes to target iPad in portrait mode:
@media only screen and (max-width: 989px) and (min-width: 768px)
Best regards,
Andy
That did it, thanks!