Viewing 27 posts - 1 through 27 (of 27 total)
  • Author
    Posts
  • #1489396

    How to change the design of the “.scroll-down-link” to be like the “.scroll-top-link”
    http://www.kerry-han.fr

    #1489418

    try f.e.:

    
    #top .scroll-down-link {
      height: 50px;
      width: 50px;
      bottom: 50px;
      background-color: rgba(255,255,255,0.3);
      border: 1px solid var(--enfold-socket-color-border);
      backdrop-filter: blur(4px);
      border-radius: 10px;
      /*** animation: none; ***/
    }
    #top .scroll-down-link.avia-svg-icon svg:first-child {
      height: 50px;
    }
    
    #top .scroll-down-link:hover {
      background-color: rgba(255,255,255,0.8);
    }
    
    #top .scroll-down-link svg path {
      fill: var(--enfold-main-color-primary);
    }
    
    

    if you do not like the animation – just get rid of the outcommenting /*** ***/

    #1489431

    Hi,

    Thanks for helping out @guenni007. Did that answer your question @VachetAlexandre?

    Best regards,
    Rikard

    #1489451

    Thanks for your feedback, but I’m just looking to be able to change the arrow type to be identical to the down-open one in SVG Iconset: Entypo Fontello (Default)

    #1489479

    Would you like to have an upward arrow to indicate a downward movement? … ( on top you are talking about scroll-top-link )
    Does that really make sense?

    if you only want to turn arround :

    
    #top .scroll-down-link.avia-svg-icon svg:first-child {
      transform: scaleY(-1)
    }
    

    but now you are talking about down-open arrow – but isnt it the down-open arrow on default?

    #1489481

    ok – you are right that on that icon the down-open-mini is used ! – you can change it by code snippet inside your child-theme functions.php:

    function avia_replace_default_icons($icons){
     $icons['svg__scrolldown'] =  array( 'font' =>'svg_entypo-fontello', 'icon' => 'down-open');
     return $icons;
    }
    add_filter('avf_default_icons','avia_replace_default_icons', 10, 1);

    you find those settings including the filter in init-base-data.php
    there you see that the scrolldown icon is correlated with the down-open-mini svg.

    charmap can be found in: charmap-svg.php

    Isn’t it just a question of size? Wouldn’t specifying the width/height alone lead to the same result?
    PS: in your case you are already use the svg icons. if someone uses the font-icons the snippet will be different –
    and correlation is on default by:
    'scrolldown' => array( 'font' => 'entypo-fontello', 'icon' => 'ue877' ),

    #1489526

    Hello dear support, would it be possible to also change the arrow icons found in the burger menu on mobile and tablet to add the same style requested previously for the scroll (identical to that of scroll up) because I cannot change it? Thank you

    #1489528

    this burger menu is not a font icon or a svg icon. These are simple containers with a given width and height.
    The top and the bottom lines are pseudo-containers (before and after).

    try in quick css: see next post for better solution ;)

    #1489559

    or the arrow thought even more demanding ;)

    :root {
      --burger-main-icon-width: 40px; /* === adjust to your needs === */
    }
    
    @media only screen and (max-width:1150px) {
      .av-hamburger {display: none}
    
      #header #avia-menu li.av-burger-menu-main.menu-item-avia-special,
      #top #wrap_all #header .av-small-burger-icon a:before{
        width: var(--burger-main-icon-width);  
      }
      
      #top #wrap_all #header .av-small-burger-icon a {
        display: flex; 
        justify-content: center;
        align-content: center;
        align-items: center;
      }
    
      #top #wrap_all #header .av-small-burger-icon a:before {
        content: "\e873";
        font-family: "entypo-fontello";
        font-size: var(--burger-main-icon-width);  
        color: var(--enfold-main-color-primary);
        text-align: center;
      }
    
      .av-burger-overlay-active #top #wrap_all #header .av-small-burger-icon a:before{
        font-size: calc(1.5 * var(--burger-main-icon-width));  /* === only if you like it === */
        color: #FFF;
        content: "\e877 \A \e873";
        line-height: 0.35em;
        animation: avia_fade_move_down 2s ease-in-out infinite;
      }
    }
    #1489643

    Hello dear support,

    I would like to contact you today because I need your help to change certain icons on my site that do not have a menu allowing me to do so to try to homogenize them to make everything cleaner.

    I previously asked Guenni007 for help changing my scroll icon to the next section on sliders by the icon on the scroll button at the top of the site and I would need you to do the same manipulation on the main menu icons in the burger menu to replace them with this same icon that I told you about.

    Please contact me if you have a solution.

    #1489644

    ok then i misunderstood your aim.
    you like to change these icons here:

    these are font-icons and could be replaced by css
    (inside your quick css):

    .html_av-submenu-hidden #top .av-submenu-indicator::before {
      content: "\E875";
      font-family: 'entypo-fontello';
      font-size: 24px;
    }
    #1489645

    btw. i do not see if you have set this rule yourself ( merged styles ):

    @media only screen and (min-width: 485px) and (max-width: 1023px) {
      .html_av-submenu-hidden .av-submenu-indicator {
        margin-right: 175px;
        opacity: 100% !important;
        font-weight: bold !important;
      }
    }

    the margin-right value causes the icon to be overlaid with the text.

    #1489646

    Thanks it worked, would it be possible to do the same for the icons present on the right and left edges in the article navigation?

    #1489650

    are these icons – enfold mangaged icons?
    Or do they belong to your carousel plugin or instagram plugin ;)

    #1489651

    No the icons in on the right and the left on the page of articles named “Actualités” in french. https://www.kerry-han.fr/evenement-salon-animalier/
    (previous and next button)

    #1489652

    ok – but even if you like to replace those icons:

    .carousel-slider.arrows-outside .owl-nav svg {
      display: none
    }
    
    .carousel-slider.arrows-outside .owl-nav .owl-prev:before,
    .carousel-slider.arrows-outside .owl-nav .owl-next:before {
      font-family: 'entypo-fontello';
      font-size: 52px;
    }
    
    .carousel-slider.arrows-outside .owl-nav .owl-next:before {
      content: "\E875";
    }
    
    .carousel-slider.arrows-outside .owl-nav .owl-prev:before {
      content: "\E874";
    }

    now the other ones …

    #1489653

    add to the snippet from above the missing instructions:

    function avia_replace_default_icons($icons){
     $icons['svg__scrolldown'] =  array( 'font' =>'svg_entypo-fontello', 'icon' => 'down-open');
     $icons['svg__prev'] =  array( 'font' =>'svg_entypo-fontello', 'icon' => 'left-open-big');
     $icons['svg__next'] =  array( 'font' =>'svg_entypo-fontello', 'icon' => 'right-open-big');
     return $icons;
    }
    add_filter('avf_default_icons','avia_replace_default_icons', 10, 1);

    after that – we had to see if position had to be adjusted.

    #1489658

    Thanks for that that’s better that i expected, but. Can you also make thoses arrows on this page for all the blog like this page : https://www.kerry-han.fr/evenement-salon-animalier/

    #1489662

    try instead:
    these are the bold versions

    function avia_replace_default_icons($icons){
     $icons['svg__scrolldown'] =  array( 'font' =>'svg_entypo-fontello', 'icon' => 'down-open');
     $icons['svg__prev'] =  array( 'font' =>'svg_entypo-fontello', 'icon' => 'left-open');
     $icons['svg__next'] =  array( 'font' =>'svg_entypo-fontello', 'icon' => 'right-open');
     return $icons;
    }
    add_filter('avf_default_icons','avia_replace_default_icons', 10, 1);
    #1489663

    on google ratings:

    .ti-next:before,
    .ti-prev:before {
      display: none !important;
    }
    .ti-next:after,
    .ti-prev:after {
      display: flex;
      position: absolute;
      justify-content: center;
      align-content: center;
      align-items: center;
      width: 100%;
      height: 100%;
      border-radius: 100%;
      transition: all 200ms ease-out;
      font-size: 24px;
      font-family: "entypo-fontello";
      color: var(--enfold-header-color-color);
    }
    
    .ti-prev:after {
      content: "\E874" !important;
    }
    .ti-next:after {
      content: "\E875" !important;
    }
    
    .ti-prev:hover:after,
    .ti-next:hover:after{
      color: #FFF !important;
      background-color: var(--enfold-header-color-color);
    }
    #1489809

    Hello can you make me a code to remove the bubble on the sides of the testimonials widget of trustindex and keep only the arrows. Best regards, Thanks.

    #1489812

    first remove this from your css

    .ti-prev:hover::after, 
    .ti-next:hover::after {
      color: #FFF !important;
      background-color: var(--enfold-header-color-color);
    }

    then:

    #top .ti-widget .ti-controls .ti-next,
    #top .ti-widget .ti-controls .ti-next:after,
    #top .ti-widget .ti-controls .ti-prev:after,
    #top .ti-widget .ti-controls .ti-prev {
      background: none !important;
      border: none !important;
      outline: none !important;
    }
    
    #top .ti-widget .ti-controls .ti-next {
      right: -10px;
    }
    
    #top .ti-widget .ti-controls .ti-prev {
      left: -10px;
    }
    
    #1489814

    Take a look at my website http://www.kerry-han.fr, because I need your help to modify the position of arrow icons in it. I give you the class corresponding to the element to which I want to add a space all around so that it does not visually collide with other elements on the page. : .ti-next:after, .ti-prev:after

    #1489819

    First – a screenshot would be nice to have. Many misunderstandings could have been avoided beforehand if I had known more precisely what needed to be changed.

    Next: i’m participant as you are, so if there is a message on private content field – i could not see it.

    #1489820

    Bonjour, merci pour votre retour rapide, je vous joins une copie d’écran de ce que je souhaite faire. Je souhaite des les flèches de navigation de mes témoignages soit identiques au autres flèches des autres carousel de la page avec un effet de changement de couleur bleu #2c1175.

    For Guenni007

    <script async src=”//s.imgur.com/min/embed.js” charset=”utf-8″></script>

    #1489870

    Thank goodness for DeepL — I did take French as my third subject in high school, but that was a good 40 years ago ;)

    #top .ti-widget .ti-controls .ti-next,
    #top .ti-widget .ti-controls .ti-next:after,
    #top .ti-widget .ti-controls .ti-prev:after,
    #top .ti-widget .ti-controls .ti-prev {
      background: none !important;
      border: none !important;
      outline: none !important;
    }
    
    #top .ti-widget .ti-controls .ti-next {
      right: -20px;
    }
    
    #top .ti-widget .ti-controls .ti-prev {
      left: -20px;
    }
    
    #top .ti-widget .ti-controls > div:after {
      font-size: 52px;
      color: #ebebeb;
    }
    
    #top .ti-widget .ti-controls .ti-prev:hover:after,
    #top .ti-widget .ti-controls .ti-next:hover:after {
      color: #2c1175 !important;
    }

    maybe you have allready included some of those rules.

    #1490114

    I need help to do the same with thoses icons please.
    Page link : https://kerry-han.fr/actualites/ ;
    https://i.imgur.com/LToqbmP.png

Viewing 27 posts - 1 through 27 (of 27 total)
  • You must be logged in to reply to this topic.