Hi @nlantz,
It will be a great help in solving your issue if you just shared your website link. In that way we can provide you the exact code to solve your problem and also explain it’s working.
Thanks.
Thread Starter
nlantz
(@nlantz)
My website is natashalantz.com. Thank you. –Natasha–
Okay so are you taking about the padding between the INTRODUCTIONS and OFFERINGS section?
Thread Starter
nlantz
(@nlantz)
Yes, I am talking about the padding between introductions and offerings, but between any sections in general. And, if I can’t get the picture in my banner section to display properly, then I will need to do something about the large space between the banner section and the introductions. I have no idea where to start when it comes to scaling my pictures. Some seem to work fine and others do not.
Okay, so i check out your site and i can see that some padding are considerably reduced maybe due to the added background images.
So i don’t know where you want to reduce the space exactly, but i will give you a general idea on how to do it.
EXAMPLE:
If you have a section that has the following HTML and CSS code:
HTML:
<div class=”example-section”>THIS IS A TEXT</div>
CSS:
.example-section {
padding: 70px; // spaces on all sides
}
OR
.example-section {
padding: 70px 70px; // top and bottom spaces
}
OR
.example-section {
padding: 70px 70px 70px 70px; // top right bottom left spaces
}
Then to reduce the spaces just reduce the value of the padding CSS property, like this:
.example-section {
padding: 10px; // spaces on all sides
}
OR
.example-section {
padding: 20px 10px; // top and bottom spaces
}
OR
.example-section {
padding: 10px 20px 10px 20px; // top right bottom left spaces
}
I apologize for the delay in my response. Let me know if it helps 🙂
Thread Starter
nlantz
(@nlantz)
Absolutely no worries about a delayed response. I am grateful for your time and thorough explanation. Yes, this does help:).
@nlantz awesome. Best wishes for your site 🙂