Forum Replies Created
-
AuthorPosts
-
September 10, 2020 at 11:30 am in reply to: Remove underline from hyperlink in bulleted list #1244866
Perfect… thank you
I’m trying to add this same autoscroll function to a horizontal gallery
when I look at line 962 in the js/avia.js fieldworker i see different code that does not appear to be about the gallery
I’m using Version: 4.4.1I also tried to search prettyPhoto in this file and did not see that either
PERFECT! Thank you.
I’m having the same issue, trying to remove the lines between the extra element. The site uses a phone number, and 2 social icons. I would like to remove the lines between those and also bet nee those extra elements and the navigation below.
Yes all set… thank you
that worked thank you …except the font hover color appears black
it there a way to make it the blue: #334a60Just tried matching the other code and that seems to work :
.flex_column.avia-link-column.avia-link-column-hover:hover {
background-color: #fff;
}
.flex_column.avia-link-column.avia-link-column-hover:hover > section > div > h4 {
color:#000 !important;
}
.flex_column.avia-link-column.avia-link-column-hover:hover > section > div > h4 {
color: #334a60 !important;
}any issue with this
changed h4 to > section > div > h4 and added !important after the color codeThanks!
Thanks Mike
One last question
The entire hover is white, how do I get the font to match the background
I tried replacing the 000 with #334a60, but that did not workthanks
Hi Nikko
Please see this page http://smarttouch.wpengine.com
Currently I have them set as text inside layout element boxes with a 1pt outline, which looks pretty good.
Not sure how to add the white hover color like this and on mobile they are very wide so probably not the best solution.Thanks
Mitchjust added this code to the function php and it worked
You can use this script in the functions.php file to set an autorotation to the horizontal gallery element. Set the interval in ms. Default is 2 seconds.
function ava_horizontal_gallery_interval() {
?>
<script>
(function($) {
// set the autorotation duration in ms
var interval = 2000;$(‘.av-horizontal-gallery’).each(function() {
var i = 0;
var b = 0;
var slider = $(this).find(‘.av-horizontal-gallery-slider’);
var item = slider.find(‘.av-horizontal-gallery-wrap’);
var next = $(this).find(‘.next-slide’);
var prev = $(this).find(‘.prev-slide’);
var count = item.length;var nextSlide = () => {
setInterval( $.proxy(function() {
next.trigger(‘click’);
i++;
if(i == count && item.last().is(‘.av-active-gal-item’)) {
clearInterval(nextSlide);
$(this).trigger(‘av-reset-item’);
i = 0;
}
}, this), interval);
}nextSlide();
$(this).on(‘av-reset-item’, function() {
setTimeout( function() {
var resetSlide = setInterval( $.proxy(function() {
prev.trigger(‘click’);
if(count == b && item.first().is(‘.av-active-gal-item’)) {
clearInterval(resetSlide);
b = 0;
$(this).trigger(‘av-next-item’);
}
b++;
}, this), 10);
}, interval);
});$(this).on(‘av-next-item’, function() {
nextSlide();
});
});
})(jQuery);
</script>
<?php
}
add_action( ‘wp_footer’, ‘ava_horizontal_gallery_interval’, 9999 );February 23, 2020 at 2:31 pm in reply to: accordion with some items that open and some that do not #1187105or can we specify the accordion format for the other bullets, we are using minimal format, so its the plus sign
this broke the format of the boxes
How do I reduce the space between 2 rows
We’re running 5.6
We’ve done that and it still happens.
Here is a video of it happening in firefox
Yes, this is happening on all browsers to anyone who edits the site. There is a page in draft called “RTC Page”. I just edited the top section of that page and the same thing happens.
Any update?
Did that and still have the same issue, rebuilt the page from scratch. Link in private
See private
Please review the video in the private link. Note I even tried making a new page and it is happening w/ that content.
Credentials in the private content
-
AuthorPosts