Forum Replies Created

Viewing 21 posts - 31 through 51 (of 51 total)
  • Author
    Posts
  • in reply to: Remove underline from hyperlink in bulleted list #1244866

    Perfect… thank you

    in reply to: Auto-rotating gallery images #1244704

    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.1

    I also tried to search prettyPhoto in this file and did not see that either

    in reply to: Social media icons #1243741

    PERFECT! Thank you.

    in reply to: Social media icons #1243734

    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.

    in reply to: Button Style #1221138

    Yes all set… thank you

    in reply to: Button Style #1220827

    that worked thank you …except the font hover color appears black
    it there a way to make it the blue: #334a60

    Just 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 code

    Thanks!

    in reply to: Button Style #1220536

    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 work

    thanks

    in reply to: Button Style #1218408

    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
    Mitch

    in reply to: Automatic scrolling for horizontal gallery #1214640

    just 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 );

    in reply to: accordion with some items that open and some that do not #1187105

    or can we specify the accordion format for the other bullets, we are using minimal format, so its the plus sign

    in reply to: Adjust space between two grid rows #1176687

    this broke the format of the boxes

    in reply to: Adjust space between two grid rows #1176538

    How do I reduce the space between 2 rows

    in reply to: Editor keeps freezing #807431

    We’re running 5.6

    in reply to: Editor keeps freezing #806101

    We’ve done that and it still happens.

    in reply to: Editor keeps freezing #804510

    Here is a video of it happening in firefox

    in reply to: Editor keeps freezing #804508

    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.

    in reply to: Editor keeps freezing #802121

    Any update?

    in reply to: Editor keeps freezing #800121

    Did that and still have the same issue, rebuilt the page from scratch. Link in private

    in reply to: Editor keeps freezing #799939

    See private

    in reply to: Editor keeps freezing #799339

    Please review the video in the private link. Note I even tried making a new page and it is happening w/ that content.

    in reply to: Editor keeps freezing #798897

    Credentials in the private content

Viewing 21 posts - 31 through 51 (of 51 total)