Hello, I was wondering if anyone knew how to change the background color of the mobile carousels. For example when you tap on a project the project information appears below the thumbnail – but since the text is black and the background is black you cannot read it. The text looks great on the desktop site just does’t work with the mobile version.
Thanks! David
1 Answers
o resolve this issue, you can open the style.css file in the folder path “\wp-content\themes\dw-page”. Find the line 314.
Replace the following code:
.section.portfolio {
background: url(img/portfolio-bg.jpg) fixed;
background-size: cover;
padding-bottom: 35px;
}
With new code:
.section.portfolio {
background: url(img/portfolio-bg.jpg) fixed;
background-size: cover !important;
padding-bottom: 35px;
}
.project-details {
overflow: hidden;
background: #fff;
}
Regards,
Perfect – that worked!
Please login or Register to submit your answer