- This topic has 1 reply, 2 voices, and was last updated 5 years, 10 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Home › Community Forums › Aspire Theme Support › Front Page 2
I want to include an image in the front page 2 section instead of a sign up section. I have the image showing but would like for it to cover the whole blue section (I changed the background to blue to show the sizing I want it to be).
Any assistance on how to make this change would be great.
Thank you for your time,
Sundra
Take a look in your style.css file in the Front Page section of the CSS and remove or adjust the padding starting on line 1539 –
.front-page-2 .image-section {
background: #ffffff;
padding: 60px 0 20px;
}
.front-page-2 .wrap {
padding: 0 5%;
}
Then add this to your CSS to remove the margin-bottom that shows up automatically for each widget –
.front-page-2 .flexible-widgets .widget {
margin-bottom: 0;
}
If you’re not using the background color, I would just remove it by adding background: none to this section – .front-page-2 .image-section
Also the .front-page-2 widget is set at 1000px by default on line 1543, but the wrap inside the widget is 960px. Since you want the image to be the background, you’ll need to change the 1000px width to 960px and adjust for the responsive part of the CSS as well.