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

    Hey. I need to know if we can add a description below the title to the lightbox of portfolio grid tool. (Preferably excerpt or alt-text).

    http://prntscr.com/bgb6y6

    something like that.

    And, I want to know if its possible to add a custom image signature to the bottom right of each picture in the light box as well.

    Please guys help me with this as i haven’t found a solution to this yet. Thank you in advance :).

    #648189

    Another thing guys, Sorry i forgot to mention. How can i make a button of the enfold slider appear on Mobile and tablets but not on desktop?

    #649235

    Hi,

    Please edit your image in media library and change title as needed.
    I belive your page is set to private as it cannot be found on my end. Can you please post login credentials here privately?
    Please point out your slider as well :)

    Best regards,
    Yigit

    #649259

    Hey, thanks for replying finally! Lol ok so i’ve found a workaround for that. But can you tell me how i can remove the hover effect for the enfold menu bar? The black hover effect.

    Or maby you can tell me how i can remove the hover effect only from my wpml flags. Any will do Thanks !

    #649263

    Hi,

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

    #top #header .av-main-nav > li.av-language-switch-item:hover > a {
        background: transparent;
    }
    

    Please make sure that > sign is not converted to – http://i.imgur.com/IDXRZQ3.png in Quick CSS field.

    Best regards,
    Yigit

    #649268

    Thanks man! I wanted another help. I was trying to customize my login page. (the one you see at homepage) and i couldn’t find the selector for the hover effect. Could you maybe help me find the selector and thus cover the color when hovered over it?

    #649270

    Please Nvm i solved it. Please keep this thread open as i may need some more help with my site. Thank you so much for your awesome support!

    #649274

    Hey!

    You are welcome, glad we could help!
    We will keep the thread open and it will be on hold until you reply. You can simply reply back to this thread to reopen it : )

    Cheers!
    Yigit

    #649288

    Hi. How can i add this class “popup-login” to my slider buttons?

    #649291

    Hi,

    Please enable the custom css class field: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and then edit your element and give them custom CSS class

    Best regards,
    Yigit

    #649295

    Sorry for not being as clear. So i need to add that class popup-login to my “full width slider” –> “Buttons”. But these buttons dont have that custom css class field for it. What that class is supposed to do is, pop up a lightbox for my login purposes. But i cant seem to find a way to do that. The menu “login” works fine as i added the class, but the buttons idk what to do with them.

    question 2: Is it possible to add multiple classes to the custom css class fields?

    #649308

    Hey!

    Sorry, after adding custom class to your element, please add following code to Functions.php file in Appearance > Editor

    function custom_class_link(){
    ?>
     <script>
    jQuery(window).load(function(){
    jQuery('.your-custom-class a').addClass('popup-login');
    });
     </script>
    <?php
    }
    add_action('wp_footer', 'custom_class_link');

    Best regards,
    Yigit

    #649358

    Sorry im not so familiar with jquery sadly.
    So, if the custom class i added the the fullscreen slider is “notdesktop” how will i modify this code?

    #649503

    Hey!

    Then your code will be

    function custom_class_link(){
    ?>
     <script>
    jQuery(window).load(function(){
    jQuery('.notdesktop a').addClass('popup-login');
    });
     </script>
    <?php
    }
    add_action('wp_footer', 'custom_class_link');

    :)

    Cheers!
    Yigit

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