Homepage › Community Forums › Aspire Theme Support › Aspire: Post Titles not Appearing in Blog › Reply To: Aspire: Post Titles not Appearing in Blog
Not sure about your Parallax Code/Customization, but I can help with the Background images on the homepage.
To make them full width, remove this from your responsive section –
@media only screen and (max-width: 1800px) {
.front-page-1,
.front-page-4,
.front-page-5,
.front-page-7,
.front-page-9,
.front-page-12 {
-webkit-background-size: auto;
-moz-background-size: auto;
background-size: auto;
}
}
Then add background-size: cover; to the area of your CSS that looks like this –
.front-page-1,
.front-page-4,
.front-page-5,
.front-page-7,
.front-page-9,
.front-page-12
I would be able to tell you the exact line number the code is located on, but you’re using a CSS compressor so it’s all condensed on 1 line. If you’re unable to find the locations I’m referring to, try and disable that plugin temporarily and then I can find out which lines the above code is located on.
