Hi,
The issue was provoked by your edition of the stylepublic.css file. The options are selected correctly, but the height of the field prevents that its value be visible:
Please, open the “/wp-content/plugins/calculated-fields-form/css/stylepublic.css” file in the text editor of your choice, and go to the style definition:
#fbuilder input[type=text], #fbuilder textarea, #fbuilder select {
border: 1px solid #2c3439;
color: #333!important;
font-size: 16px;
font-size: 1.6rem;
font-weight: 300;
line-height: 1.65;
padding-left: 5px;
margin-left: 0;
height: 9px;
}
and remove the line:
height: 9px;
and finally, clear the browser’s cache.
Best regards.
Thanks for the quick response. That did the trick, but I added that in to reduce the height of the text area. Otherwise it’s far too large. Is there any way to adjust the height of the text area without affecting the visibility of drop down values?
It seems odd that the text boxes would show values with a height of 10px but the drop downs wouldn’t. Any thoughts?
Thanks again.
Hi,
The big size of the fields is provoked by the padding in the styles definition:
input,
select,
textarea {
background-color: #fff;
border: 1px solid #ddd;
border-radius: 3px;
box-shadow: 1px 1px 3px #eee inset;
color: #999;
font-size: 14px;
font-size: 1.4rem;
padding: 16px;
padding: 1.6rem;
width: 100%;
}
in the file:
http://dailypa.wpengine.netdna-cdn.com/wp-content/themes/genesis-sample/style.css
You should remove the lines of code
padding: 16px;
padding: 1.6rem;
I’m sorry, but the styles of your website are not related directly with our plugin.
Best regards.
Got it all fixed up! Thanks again for the quick turnaround.
Take care.