• Resolved kvle

    (@kvle)


    is it possible to not display the navigation circles at the bottom of the sliding images when visible panels is set to 1…

    also, has anyone noticed that when there are multiple slides, the last circle is not lined up in a straight line with other circles…
    it is a little lower than the rest…something like this

    ? ?

    since i can’t paste a screenshot nor attach it, i’ve uploaded to my flickr account…

    https://www.flickr.com/gp/164143134@N08/M4Yj33w3k9

    thanks

Viewing 11 replies - 1 through 11 (of 11 total)
  • Thread Starter kvle

    (@kvle)

    forgot to include my environment…

    WordPress 5.9.3
    PHP Version : 7.4.28

    Thread Starter kvle

    (@kvle)

    sorry, one more observation…

    the circles line up ok in the preview…
    it only displays strangely when included on a page

    Plugin Author bqworks

    (@bqworks)

    Hi,

    You can hide the buttons with custom CSS. The lining issue with the last circle is probably caused by some external CSS. This code should fix it:

    
    .as-pagination-buttons {
         visibility: hidden;
    }
    
    .as-pagination-button {
         margin: 4px !important;
    }
    

    Best,
    David

    Thread Starter kvle

    (@kvle)

    hi,

    thanks for quick response.
    both worked.

    however, the pagination buttons are gone but the white space remains…
    how do i remove that also…

    thanks

    Plugin Author bqworks

    (@bqworks)

    Hi,

    Instead of visibility: hidden you can use display: none.

    Best,
    David

    Thread Starter kvle

    (@kvle)

    .as-pagination-buttons {display: none;} doesn’t work…white space is still there

    Plugin Author bqworks

    (@bqworks)

    Maybe try .as-pagination-buttons {display: none !important;}. If that still doesn’t work, the white space could be caused by something else and I would need to take a look at the page, in order to figure it out.

    Best,
    David

    Thread Starter kvle

    (@kvle)

    still no luck…

    .as-pagination-buttons {display: none !important;}

    (site is still under construction)

    https://sites.austincc.edu/bua/rele/

    thanks

    Plugin Author bqworks

    (@bqworks)

    One of the accordion’s container elements, wpb_content_element, has a margin bottom of 35px. You could remove that with CSS .wpb_content_element {margin-bottom: o !important;}, but that will remove it everywhere and maybe you want that margin in some places, so check if you can remove it only for that element, somewhere in the admin area.

    Best,
    David

    Thread Starter kvle

    (@kvle)

    that worked…
    thanks for following through…

    Plugin Author bqworks

    (@bqworks)

    You’re welcome!

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘navigation’ is closed to new replies.