Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #639259

    Hello , at first excuse me for my bad english !

    Id’ like to delete the thin red border around gallery thumbnail :
    (or to how make it the same color than the background )

    http://saou-restaurant.fr/#notrehistoire

    I put some CSS codes in quick CSS to delete borders between lateral menu and content on all the page.

    .content, #top #main .sidebar, .sidebar_left .content { border-left-style: none!important; border-right-style: none!important; }
    .avia-section { border: none !important; }
    .footer { border: none; } this one have effect

    I made red border in “general styling” to make it invisible between the lateral menu and the footer

    Thank you for your help

    #639260

    Hi philichar!

    “Site en construction” Please post login credentials here privately so we can see your page

    Regards,
    Yigit

    #639319

    Hi
    Sorry, i forgot the maintenance mode !
    See Private Content

    #639323

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    #top div .avia-gallery img { padding: 0; }
    

    Best regards,
    Yigit

    #639327

    Humm not yet, now the red border is just nearer from the Thumb…

    #639333

    Hi!

    Sorry, please use following code instead

    #top div .avia-gallery img {
        border-style: none;
    }

    Best regards,
    Yigit

    #639340

    That’s it ! Thank you very much.

    Second question :
    About Gallery Monsory / caption
    Is it possible to have no caption when a picture is open in the Lightbox ?
    see: http://saou-restaurant.fr/#contact

    … and keep caption for traditional gallery
    see : http://saou-restaurant.fr/#notrehistoire

    #639344

    Hey!

    Please enable the custom css class field: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and edit your icons that you would like to have no title and give them a custom CSS class and then add following code to Functions.php file in Appearance > Editor

    function remove_title_attr(){
    ?>
     <script>
    jQuery(window).load(function(){
    jQuery('.your-custom-class img').removeAttr('title');
    });
     </script>
    <?php
    }
    add_action('wp_footer', 'remove_title_attr');

    Cheers!
    Yigit

    #639349

    ok, it’s too difficult for me !
    Thank you very much for your answers .

    Have a nice day !

    #639357

    Hey!

    You are welcome. If you would like us to do it, we can apply it for you :)

    Cheers!
    Yigit

    #1148900

    Hi,

    I want deactivate borders on a specific gallery thumbnails. So, on my element (gallery), I’ve added custom css class named : gallery-no-border.
    After, I have added this code in my quick CSS :

    .gallery-no-border #top div .avia-gallery img{
    border: none !important;
    }

    But it doesn’t work… Is the syntaxe correct ?
    Can you help me ?

    Thanks,
    Franck

    #1149259

    Hi SphereEvenements,

    Which page are you doing it on?

    Could you please give us a link to your website, we need more context to be able to help you.

    Best regards,
    Victoria

    #1149275

    Hi Victoria,
    This one for example, specifically the gallery in layer slider : http://www.sphere-evenements.com/autres-receptions-privees/
    Thanks,
    Franck

    #1149335

    Hi SphereEvenements,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    #top #layerslider_48  div .avia-gallery img {
        border: none;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

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