How to change registration error color ?

Yannick Deslandes Posted in General Discussion 10 years ago

Hello,
errors at regsitration first page is white on light colors, not very useful to read like my attached picture show it :
https://www.uploady.com/download/d4L_C5XYtDb/EJ1~fodd6wFCSCcP

Where to change it please ?

Replies
French Yannick Deslandes Replied 10 years ago

Ok thanks a lot !

Indonesian Arsalan Shah Replied 10 years ago

This is bug in ossn black theme,

Disable Cache,
Go to

themes/ossnblack/style/default.php

Go to line 258-264, You should see:

.ossn-error-container,
.login-error {
  border:1px  solid #DD3C10;
  border-width: 1px;
  background-color: #FFEBE8;
  padding:13px;
}

Replace it with:

.ossn-error-container,
.login-error {
  border:1px  solid #DD3C10;
  border-width: 1px;
  background-color: #FFEBE8;
  padding:13px;
  color:#000;
}

Now go to line 297, you should see:

.ossn-message-done{
   border: 1px solid #1EB0DF;
   border-width: 1px;
   background-color: #DAF6FF;
   padding: 13px;
   text-align:left;
}

Replace it with:

.ossn-message-done{
   border: 1px solid #1EB0DF;
   border-width: 1px;
   background-color: #DAF6FF;
   padding: 13px;
   text-align:left;
   color:#000;
}

Enable cache again.