2 posters
Warning System Problem?
Beyonder- Forumember
- Posts : 726
Reputation : 29
Language : English
Location : Beyond Realm
- Post n°1
Warning System Problem?
Ange Tuteur- Forumaster
- Posts : 13207
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania
- Post n°2
Re: Warning System Problem?
Hi,
Could you explain your problem in more detail ?
Thanks.
Could you explain your problem in more detail ?
Thanks.
Beyonder- Forumember
- Posts : 726
Reputation : 29
Language : English
Location : Beyond Realm
- Post n°3
Re: Warning System Problem?
Im trying to change the Moderator box color to purple.Ange Tuteur wrote:Hi,
Could you explain your problem in more detail ?
Thanks.
Ange Tuteur- Forumaster
- Posts : 13207
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania
- Post n°4
Re: Warning System Problem?
Replace this CSS :
by :
and change 990099 if you want a different color.
- Code:
.mod_mess {
background: #5c93f5;
background: -moz-linear-gradient(left, #5c93f5 0%, #afcfda 100%);
background: -webkit-gradient(linear, left top, right top, color-stop(0%, #5c93f5), color-stop(100%, #afcfda));
background: -webkit-linear-gradient(left, #5c93f5 0%, #afcfda 100%);
background: -o-linear-gradient(left, #5c93f5 0%, #afcfda 100%);
background: -ms-linear-gradient(left, #5c93f5 0%, #afcfda 100%);
background: linear-gradient(left, #5c93f5 0%, #afcfda 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5c93f5", endColorstr="#afcfda", GradientType=1);
-webkit-box-shadow: 4px 4px 0px 0px #352727;
-moz-box-shadow: 4px 4px 0px 0px #352727;
box-shadow: 4px 4px 0px 0px #352727;
}
by :
- Code:
.mod_mess {
background: #990099;
-webkit-box-shadow: 4px 4px 0px 0px #352727;
-moz-box-shadow: 4px 4px 0px 0px #352727;
box-shadow: 4px 4px 0px 0px #352727;
}
and change 990099 if you want a different color.
Beyonder- Forumember
- Posts : 726
Reputation : 29
Language : English
Location : Beyond Realm
- Post n°5
Re: Warning System Problem?
Alright thank you!
Ange Tuteur- Forumaster
- Posts : 13207
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania
- Post n°6
Re: Warning System Problem?
You're welcome.
If this is solved, please click the solved button above your first post or edit the first post and tag the solved icon.
If this is solved, please click the solved button above your first post or edit the first post and tag the solved icon.