Hello! I would like to change the background of the feature section from black to blue, its the seconde and third slide, where it's writen in white 'Referenzen' that black transparent box I would like to change to blue, but I could not finde the right css parameter, can you help?
http://design-studio-basel.ch/buildexcellence/
Theme, Pagelines Pro
Duncan O'Neill answers:
Hi Simone,
it's in this file;
http://design-studio-basel.ch/buildexcellence/wp-content/themes/platformpro/pro/pro.css
line 119. The declaration is below;
#feature_slider .fcontent {
background: url("../images/black60.png") repeat scroll 0 0 transparent;
color: #FFFFFF;
display: inline;
font-size: 1.2em;
line-height: 1.55em;
position: relative;
text-shadow: 0 -1px 0 #000000;
You need to change the background image in the first rule to something blue. It's just a 5px x 5px black square at the moment.
Hope this helps
Simone Fuchs comments:
I see, I have to chage the image, thanks!
Simone Fuchs comments:
Hello! I tried that out now, and uploaded a blue image, but it's not transparent anymore... and when I add the css the image is not showing anymore at all... can you help? thanks a lot!
Svilen Popov answers:
Open <strong>wp-content/themes/platformpro/pro/pro.css</strong> and find this
<blockquote>#feature_slider .fcontent {
<strong>background: url(../images/black60.png);</strong>
color: #fff;
text-shadow: #000 0 -1px 0 ;
font-size: 1.2em;
line-height: 1.55em;
display: inline;
position: relative;
}</blockquote>
Edit the background value.
Or you can edit the image as well -http://design-studio-basel.ch/buildexcellence/wp-content/themes/platformpro/images/black60.png
Utkarsh Kukreti answers:
#feature_slider .fcontent {
background-color: #44b;
}
Simone Fuchs comments:
That works, but its not transparent anymore.