customizing -boxred class in deal-template plazza
- Posted by rottenberg (60) Offline
Hello
I'm using Acymailing module in Deal Templateplazza.
When I'm using the class '-boxred' the form is unreaddable (image bad module.jpg)
When Im using the class '-nobox' the form is readdable (image good module.jpg)
Which CSS fl do need t customize to get -boxred form readdable ?
thank you for help
Best Regards and Happy New Year
Michel
11 years 11 months ago #1
by rottenberg
I'm using Acymailing module in Deal Templateplazza.
When I'm using the class '-boxred' the form is unreaddable (image bad module.jpg)
When Im using the class '-nobox' the form is readdable (image good module.jpg)
Which CSS fl do need t customize to get -boxred form readdable ?
thank you for help
Best Regards and Happy New Year
Michel
Please Log in or Create an account to join the conversation.
- Posted by ronysyz (191) Offline
Hello rottenberg,
you ca edit it in templates/deals_plazza/css/modules.css
become to
Regards
11 years 11 months ago #2
by ronysyz
you ca edit it in templates/deals_plazza/css/modules.css
div.moduletable-boxblue .modulcontent *, div.moduletable-boxred .modulcontent * {
color: #fff!important;
}
become to
div.moduletable-boxblue .modulcontent *{
color: #fff!important;
}
div.moduletable-boxred .modulcontent * {
color: #000!important;
}
Regards
Please Log in or Create an account to join the conversation.
- Posted by rottenberg (60) Offline
thank you
this has not completely corrected my problem :
Now all the text is black. I just want to get the form fields writen in another color than whitee which cannot be read.
Ithe text on the pink background is better when white writen
thank you for help
best regards
Michel
11 years 11 months ago #3
by rottenberg
this has not completely corrected my problem :
Now all the text is black. I just want to get the form fields writen in another color than whitee which cannot be read.
Ithe text on the pink background is better when white writen
thank you for help
best regards
Michel
Please Log in or Create an account to join the conversation.
- Posted by andy (759) Offline
Hi rotterberg, Happy New year too
Just want to add what rony suggested, can you please try to change the code :
into :
11 years 11 months ago #4
by andy
Just want to add what rony suggested, can you please try to change the code :
div.moduletable-boxblue .modulcontent *, div.moduletable-boxred .modulcontent * {
color: #fff!important;
}
into :
div.moduletable-boxblue .modulcontent *, div.moduletable-boxred .modulcontent * {
color: #fff!important;
div.moduletable-boxred .modulcontent form * {color:#333!important;}
Please Log in or Create an account to join the conversation.
- Posted by ronysyz (191) Offline
Hello,
you can try to add this css code
or you can change #FF00AE with your color
Regards
11 years 11 months ago #5
by ronysyz
you can try to add this css code
div.moduletable-boxred .acyfield_name input,
div.moduletable-boxred .acyfield_email input,
div.moduletable-boxred .acysubbuttons input {
color: #FF00AE!important;
}
or you can change #FF00AE with your color
Regards
Please Log in or Create an account to join the conversation.
- Posted by andy (759) Offline
ah rony solution is more complete than me Have a try it rotterberg
11 years 11 months ago #6
by andy
Please Log in or Create an account to join the conversation.