-
Search Results
-
Hello,
I hope you can help, I’ve been able to customize the contact form to a certain point but some things are still not working:
1) The right alignment of the top two rows do not align with the message box and need to
2) The css styling of the submit button isn’t updating in the browser correctly.
I’d like it to be outlined white with white text, and probably larger in general, then when hovered, have a slightly transparent white BG so that it looks like a lighter red but the white text and outline are still visible – sort of from outlined to filled when hovered over.
5) If it’s at all possible to update the form filed font to Omnes light, that would be incredible too.Thank you SO much for any help in advance. Your support team is truly what makes using your themes the best experience.
Sincerely,
StephanieTopic: Monthly calendar not working
Hello,
we make a website for our client and we want on contact form of the date field to display a monthly calendar like in: https://kriesi.at/themes/enfold-restaurant-one-page/#reservations
We found from your documentation how to visualize it:
.ui-datepicker-calendar .ui-datepicker-week-end+.ui-datepicker-week-end a.ui-state-default, .ui-datepicker-calendar tr > td:first-child a.ui-state-default {
background-color: gold;
pointer-events: none !important;
}But it turned out to be only visible when you logged in as an admin.
After searching in the forum, we found here (https://kriesi.at/support/topic/date-selection-contact-form/) a code for file function.php :The script is being executed before jQuery loads, which is why it’s not working. I’ve added this code in the functions.php file to fix the issue temporarily
function ava_load_jquery_dep_script() {
wp_enqueue_script( ‘avia-datepicker-dummy’, get_template_directory_uri() . ‘/js/test.js’, array(‘jquery’), ‘1.0’ );wp_add_inline_script( ‘avia-datepicker-dummy’, ‘jQuery(document).ready(function(){ jQuery(“.avia_datepicker”).datepicker({
beforeShow: function(input, inst) {
jQuery(“#ui-datepicker-div”).addClass(this.id);
inst.dpDiv.addClass(“avia-datepicker-div”);
},
showButtonPanel: true,
closeText: AviaDatepickerTranslation.closeText,
currentText: AviaDatepickerTranslation.currentText,
nextText: AviaDatepickerTranslation.nextText,
prevText: AviaDatepickerTranslation.prevText,
monthNames: AviaDatepickerTranslation.monthNames,
monthNamesShort: AviaDatepickerTranslation.monthNamesShort,
dayName: AviaDatepickerTranslation.dayNames,
dayNamesShort: AviaDatepickerTranslation.dayNamesShort,
dayNamesMin: AviaDatepickerTranslation.dayNamesMin,
dayNames: AviaDatepickerTranslation.dayNames,
dateFormat: AviaDatepickerTranslation.dateFormat,
firstDay: AviaDatepickerTranslation.firstDay,
isRTL: AviaDatepickerTranslation.isRTL,
changeMonth: true,
changeYear: true,
yearRange: “c-80:c+10”
}); });’ );
}
add_action( ‘wp_enqueue_scripts’, ‘ava_load_jquery_dep_script’, 10 );but we put it in our site broke: the full slider stopped working, the menu refused, and more.
I appreciate the work of your team, the quick reaction and the exact directions.
Can you give me support?
Is it possible for a site visitor to choose only dates from today + 7 days?Topic: Disable link animation?
Hello,
on relaunch.blumen-hegemann.de I have built some content boxes that link to various sites with the HTML-Element.The html goes like this:
<div class="button-box"> <a href="floristik"><img src="https://relaunch.blumen-hegemann.de/wp-content/uploads/button-blumen.jpg" alt="Blumen" /></a> <a href="floristik"><div class="button-text">Blumen</div></a> </div>The CSS:
.button-box {position: relative; width:360px; height:360px; margin-bottom: 80px; } .button-img {width: 100%; height: 100%;object-fit: cover;opacity: 0.7; } .button-text {position: absolute; left: 0;width: 100%; top: calc(50% - 20px); text-align: center; font-size: 58px; line-height: 1.2;letter-spacing:5px; font-weight: bold; color: #000;text-transform: uppercase; } .button-img:hover {opacity: 0.4; }Nothing spectacular, the button fades on hover, that’s all.
Now Enfold theme add the following before the closing :
<span class="image-overlay overlay-type-extern" style="left: -5px; top: 0px; overflow: hidden; display: block; height: 360px; width: 370px;"> <span class="image-overlay-inside">::before></span> </span>The result is very strange: depending on where I hover over the box (top, middle, down), either my CSS works, or the Enfold image-overlay works, or (middle) nothing happens.
How can I turn off this animation (image-overlay)?
Thanks,
DanielHallo,
is there a way to change the masonry category to a nicer look?
In standard the menu points are separated by / –> Test1 / Test2 / Test3
I would like to display nice buttons like enfold is offering in other modules – is this possible?
thank you very much and best regards
Topic: Top bar styling
Hi
I’m having difficulty targeting the links I have placed in the top bar.
I need to colour each link seperately ie “Apply to year 10” in one colour, “Apply to year12” (another colour) and tel (another colour).
I’ve tried several suggestions on the forum but none seem to be right.I’ve also tried to put these links in the header as buttons using the code snippet –
add_action( 'ava_after_main_menu', 'enfold_customization_header_widget_area' ); function enfold_customization_header_widget_area() { dynamic_sidebar( 'header' ); }in functions.php but my widget “header buttons” doesn’t show
– can you help?Thanks Steve
Topic: Enfold Contact Form Element
Hi there, We see see “Authenticating” instead of SUBMIT button in the contact form done with ENFOLD contact form element. please refer to this screenshot https://www.screencast.com/t/CgaUtscI
Can you please help me figure out what is the issue?
Dear Enfold team,
I have two problems with the enfold audio player, as used here on my website (please see link posted in private content).
1st
When I start the audio via the play button the first two seconds of the audio cannot be heard.2nd
As mentioned in an earlier post from 2018 the audio is – although player is set to „stop after playing last song – automatically replays the audio when it is finished.
see also post here from 2019:I tried out the solution as suggested here and exchanged the css and the php-file, but still the autoplayer plays the file again after it has ended.
Looking forward to your answer and hope there is a solution (soon).
Topic: Underlining all links
Hi Enfold team!
I am using the following code to underline ALL links on my site (for WCAG compliance):
#main a,#main .sidebar a,#footer a,#socket a, #main p a { text-decoration: underline !important; } a.avia-button,a span.avia_iconbox_title,#top .av_font_icon a.av-icon-char { text-decoration: none!important; }Problem is it’s underlining my buttons. I’ve tried the following code to keep that from happening but it’s not quite working:
.avia-button { text-decoration: none!important; }Thank you in advance!



