Css issue

Rate this topic: Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.
GK User
Fri Feb 13, 2015 8:58 am
Reply with quote
Report this post
Hello !

I'd like to add a basic black transparent effect on the top of the text like here

http://awesomescreenshot.com/0af4ehf6fd

I've created a class and used it over the text

Code: Select all
.form_register {
width: 100%;
background: rgba(0, 0, 0, 0.49);
margin: 0 auto;
padding: 20px 20px 25px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;


But for some reasons it's displayed behind the normal background.

How can I get the text > The background of the text > The normal background

http://agency.joomgeek.com/3dprinting/

Tks a lot !
User avatar
Gold Boarder

GK User
Fri Feb 13, 2015 9:14 am
Reply with quote
Report this post
It displays 100% fine. Perhaps there is some cache issue you are having? Please try chrome incognito / ff private mode to check if it works fine.
User avatar
Moderator

GK User
Fri Feb 13, 2015 9:35 am
Reply with quote
Report this post
I tried on different browser and I still don't see the black background. Do you see it ?
User avatar
Gold Boarder

GK User
Fri Feb 13, 2015 2:22 pm
Reply with quote
Report this post
Your site seems down. Could you please check it?
User avatar
Moderator

GK User
Fri Feb 13, 2015 2:23 pm
Reply with quote
Report this post
We just put it live :p http://www.the3dshape.com/
User avatar
Gold Boarder

GK User
Sat Feb 14, 2015 5:09 pm
Reply with quote
Report this post
Seems like strange rendering issue.
Please modify your code to:
Code: Select all
.form_register {
width: 100%;
background: rgba(0, 0, 0, 0.49);
margin: 0 auto;
padding: 20px 20px 25px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
position: relative;
z-index: 1;
}
User avatar
Moderator

GK User
Sun Feb 15, 2015 6:42 am
Reply with quote
Report this post
Perfect ! Tks a lot
User avatar
Gold Boarder

GK User
Mon Feb 16, 2015 6:05 pm
Reply with quote
Report this post
Is there anything else I can help you with regarding this topic?
User avatar
Moderator

GK User
Mon Feb 16, 2015 8:28 pm
Reply with quote
Report this post
No tks it's done :)
User avatar
Gold Boarder


cron