CMS Development

Rotemgal
Participant

Using Airfleet design - mobile not optimized

Hello,

 

I have created the following LP:

https://go.gigaspaces.com/paris-event-march-2020

 

When in mobile version, people are unable to see some of the fields. I tried to find a solution but nothing seem to help.. 

template.pngThanks

0 Upvotes
1 Reply 1
alyssamwilie
Recognized Expert | Elite Partner
Recognized Expert | Elite Partner

Using Airfleet design - mobile not optimized

Hi @Rotemgal !

There's a height and max-height set on the hero which is why it's not stretching to the content. If you add the following to your CSS it should fix the issue (also added some more padding so your content isn't covering the social icons) :

 

@media (max-width: 768px) {
.af-event-hero { max-height: unset; height: auto; padding-top: 150px; padding-bottom: 75px;
} }

 
Also, I would add a max-width to your logos so they don't become so large on mobile.

 

.af-event-hero img {
    max-width: 175px;
}

If this answer solved your question, please mark it as the solution.

Alyssa Wilie Profile Image

Alyssa Wilie

Web Developerat Lynton

Learn HubL | Get Marketing Insights

HubSpot Elite Solutions Partner
Lynton's HubSpot theme Rubric now available. Click to download.
0 Upvotes