mjunes
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] Minutes Field doesn’t work properlyHello again,
How to make the minutes field to display only certain values (5,10,15 and 20)?
Thanks.
Forum: Plugins
In reply to: [CP Blocks] Print Button Ignores Dropdown button stylingHello,
I’m sorry if this too confusing. And unfortunately i cannot share the url. I have attached a screenshot differentiating the 2 behaviors, please check the url. I just need the dropdown fields in print window to look identical to the dropdown fields in the actual form.
Forum: Plugins
In reply to: [CP Blocks] Print Button Ignores Dropdown button stylingHello,
Thank you for pointing me in the direction. However applying styles to the
.dfield
selects the whole field including.uh
. But I want apply styles only toselect
and doing so does nothing in the print form. It still displays as plain text. I can’t even change the color of theselect
text that appears in the print form. Any help would be highly appreciated.Thanks
Forum: Plugins
In reply to: [CP Blocks] Print Button Ignores Dropdown button stylingIn that case is it possible to apply the style of calcuated fields to the text of the dropdown fields in the print form?
Forum: Plugins
In reply to: [CP Blocks] Print Button Ignores Dropdown button stylingHello,
Thanks for the response. But the styling is missing only for the dropdown fields, the text fields (numeric), date fields, calculated fields are displayed perfectly with the styling.
Forum: Plugins
In reply to: [Calculated Fields Form] Center Align Labels verticallyThank you. I have achieved it by applying
line-height: 4em;
to all labels.Forum: Plugins
In reply to: [Calculated Fields Form] How to change the form alignment in mobileI have achieved it with the below code:
<script> jQuery(document).ready(function($) { var alterClass = function() { var ww = document.body.clientWidth; if (ww < 710) { $('.left_aligned').addClass('top_aligned'); $('.left_aligned').removeClass('left_aligned'); }; }; $(window).resize(function(){ alterClass(); }); alterClass(); }); </script>
Please let me know if there is a better alternative.
Forum: Plugins
In reply to: [Calculated Fields Form] Center Align Labels verticallyUnfortunately I cannot share the url. Please let me know a general solution and I’ll work from there. Thanks for the help.
Forum: Plugins
In reply to: [Calculated Fields Form] Center Align Labels verticallyHello,
Thanks for the solution but using this solution makes the labels to ignore
text-align: right;
property. They get left aligned. Is there anyway I can right align the labels horizontally while still having them center aligned vertically?It also makes all the slider controls to shrink to the left.
Oh! that’s so freaking awesome. This is exactly what I wanted. Thank you so much. The plugin is just perfect now. This update essentially makes this plugin the best out there. Beats all the paid plugins too. ?? Thumbs up for the hard work.
Any pointers? Can really use some help. Thank you.
Great. I shall wait. ??
Perfect. Thanks for the prompt responses and updates. Now all you have to do is advertise and this plugin will shine like a diamond. Thumbs up. ??
One quick suggestion: When a user click on a star to rate, it would be nice if the stars revert to show the average rating after a 2-3 sec time delay. As of now, it stays on with the user rating with the thank you message.
Hello,
Thanks for the quick update. I did try selecting the option “Color the stars in rating widget according to the rating”. But it didn’t make any difference. The stars still displayed as grey (#ccc) on page load. Shouldn’t it be all yellow if the average rating is 5? Please let me know your thoughts.
Thanks.
Forum: Plugins
In reply to: [Calculated Fields Form] Highlight EffectThank you. I mentioned the templates incorrectly, it was template 11 not 12. And I recreated the behavior by adding the highlight class to the fields on mouseover and mouseout.