Hi,
2 questions about the parallax demo, please:
1.- I have a color section with too much height space.
I have looked at all the options that have occurred to me, without success.
You can see it in bogerdpro.com, in the blue background color section, before “Productos” with white background.
Where can I adjust the height of this section color?
2.- In mobile, the contact form is not loaded. What can it be?
I send you the credentials, in the case you need it.
Thanks in advance.
Joan
Hey bcndisseny,
Thank you for the inquiry.
1.) You can add the following css code to adjust the space below the floating columns. And consider changing the background color of the section from the default blue background to gray (#f8f8f8) so that it has the same background color as the section below.
#service {
margin-bottom: -250px;
}
2.) The cell containing the contact form is configured to not display on mobile view. To change this, please edit the cell, go to the Advanced panel, and adjust the Responsive > Element Visibility settings.
Best regards,
Ismael
Thanks Ismael for your quick answer!
2 comments, please_
1.- In the first point, I did, cleaning all the caches:
#service {
margin-bottom: -250px;
}
Also I tried with_
#service {
margin-bottom: -250px !important;
}
But no change…
2.- I can see the form in mobile, but the cell that contains the form only display in 50% horizontaly, it’s cut it. What can it be?
Thanks in advance.
Joan
One more comment:
In the first pont (1):
The color section overlay the next section (productos)
Hi,
Thank you for the update.
We made edits in the Quick CSS field and tweaked the code a bit.The gap between the #service and #portfolio sections has now been reduced.
@media only screen and (min-width: 989px) {
#service {
margin-bottom: -250px;
}
#portfolio {
position: relative;
z-index: 10;
}
}
Best regards,
Ismael
Thanks a lot Ismael!