This object is in archive! 
Change Font color for input text when selecting a date from the calendar IO_rent shortcode
Answered
I need to change the input text color when a date is selected for a product in the shortcode IO_rent
Currently the background and the font color are both white.
I need the date that will be displayed from the calendar to be black.
Thanks
You would have to override the CSS of the jquery-ui.css file by
putting a style tag in the shortcode with the appropriate
definitions. I think the following rule controls the colors of the
date numbers.
.ui-state-default, .ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
background: #e6e6e6 url("images/ui-bg_glass_75_e6e6e6_1x400.png")
repeat-x scroll 50% 50%;
border: 1px solid #d3d3d3;
color: #555555;
font-weight: normal;
}
I'm sure there are more definitions for other text on the date popup.
You would have to override the CSS of the jquery-ui.css file by
putting a style tag in the shortcode with the appropriate
definitions. I think the following rule controls the colors of the
date numbers.
.ui-state-default, .ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
background: #e6e6e6 url("images/ui-bg_glass_75_e6e6e6_1x400.png")
repeat-x scroll 50% 50%;
border: 1px solid #d3d3d3;
color: #555555;
font-weight: normal;
}
I'm sure there are more definitions for other text on the date popup.
Replies have been locked on this page!