Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #307982

    Hello!

    I have some questions about the layout in Gravity Forms. I have some problems to integrate my form with Enfold. I tried with the Gravity Forms css but it’s not working.

    I would like to decrease the space between html block and text line and I would like to have check box radio inline and can deacrease the space between each. I used gf_list_4col but I can’t change the space..

    I know it’s not your speciality but if you could help me, that would be great!!

    Thank you!

    #308189

    Hi squaic!

    Thank you for using the theme.

    I’m not sure what page I can find the first screenshot but please try this on the “days” element:

    .gform_wrapper ul.gfield_checkbox li, .gform_wrapper ul.gfield_radio li {
    padding: 0 !important;
    float: left;
    width: 25%;
    clear: none;
    margin: 0 !important;
    }

    Best regards,
    Ismael

    #308228

    Hi Ismael!

    Thanks for you answer! Yes I know, I did the screen “days” when I used gf_list_4col . I’m trying your code. Di you have an idea about the space between the html block and text line?

    Thank you!

    Adrien

    #308230

    Another question, I created 2 menu for login and logout user. My problem is the second menu gone directly in the socket area.. And I don’t want a menu in the socket, just the FAQ, CG, etc..

    Thank you!

    #309092

    Hi!

    Thank you for the update and sorry for the delay.

    Regarding the space between the html block and text line, we don’t see any example on the site. Can you please give us the link to the actual page? The link on the socket is not visible. I think you managed to remove it.

    Cheers!
    Ismael

    #309217

    Hi Ismael!

    No problem, I’m sure you’re busy! It’s ok for me “space problem”, I found a solution.

    But I have a problem with my menu in the socket. I created 2 menu to show one when you’re logged in and one if you’re logged out. I’m using this code:

    function my_wp_nav_menu_args( $args = ” ) {

    if( is_user_logged_in() ) {
    $args[‘menu’] = ‘logged-in’;
    } else {
    $args[‘menu’] = ‘logged-out’;
    }
    return $args;
    }

    And for finish, I created a menu for the FAQ and co.

    My problem is, when I’m logged out, my menus are good, (FAQ in the socket) but when I’m logged in, I have my logged-out menu in the socket..

    More information in the next message.

    Thank you!

    #309218
    This reply has been marked as private.
    #310535

    Hey!

    Did you try to use the “conditional menu” feature – you can activate it easily by adding one line of code to your child theme functions.php or enfold/functions.php file:

    add_theme_support( 'avia_conditionals_for_mega_menu' );
    

    It’s a native Enfold feature which helps you to use conditionals for menu items:

    Best regards,
    Peter

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