Jump to content

transparent background issue.


Zenithlt

Recommended Posts

Hello, 

So i added this code to custom.CSS: 

 

#ipsLayout_header header {
  background-color: transparent;    
}


html, body { 
    background: url(/header-content.jpg) no-repeat center center fixed, #000; 
        -webkit-background-size: cover;
  		-moz-background-size: cover;
  		-o-background-size: cover;
  	background-size: cover;
  	color: #fff
}

 

Text in admin cp becomes invisible or something

 

30d82c5a1c.png

And this is when i highlight text. There is the same issue for other text in front end as well. 

c8df6c85d6.png

 

 

 

Link to comment
Share on other sites

Try this:

 

#ipsLayout_header header {
  background-color: transparent;    
}

#ipsLayout_header header a { color: #000; }


html, body { 
    background: url(/header-content.jpg) no-repeat center center fixed, #000; 
        -webkit-background-size: cover;
  		-moz-background-size: cover;
  		-o-background-size: cover;
  	background-size: cover;
  	color: #fff;
}

 

Link to comment
Share on other sites

3 hours ago, TheHappenen said:

Try this:

 


#ipsLayout_header header {
  background-color: transparent;    
}

#ipsLayout_header header a { color: #000; }


html, body { 
    background: url(/header-content.jpg) no-repeat center center fixed, #000; 
        -webkit-background-size: cover;
  		-moz-background-size: cover;
  		-o-background-size: cover;
  	background-size: cover;
  	color: #fff;
}

 

Did not solve the issue :( But thanks for reply ^_^ any1 has more sollutions? 

Link to comment
Share on other sites

9 hours ago, TSP said:

You should remove color: #fff from the html, body-elements. You need to be more specific on which text to appear white.

#ipsLayout_header header a { color: #000; }

If he's using the Layout header, and adds what I put in, it should have overwritten it. We just need to find out what div class it is, and make a special css edit.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...