Forum Replies Created

Viewing 30 posts - 18,451 through 18,480 (of 82,585 total)
  • Author
    Posts
  • in reply to: Transferring site #851121

    Hey arcray!

    Please make sure that theme names are matching on both sites. Also, please see – http://kriesi.at/documentation/enfold/move-from-a-local-installation-to-a-live-server/

    Cheers!
    Yigit

    in reply to: logo and menu on mobile on top of each other #851105

    Hi!

    You are welcome! Let us know if you have any other questions or issues :)

    Best regards,
    Yigit

    in reply to: Hide mobile menu #851101

    Hi seykom!

    I changed the code to following one

    ul#avia-menu {
        display: none;
    }

    Please flush browser cache and review your website

    Regards,
    Yigit

    in reply to: Socket – horizontal alignment issue #851091

    Hey!

    You are welcome! Let us know if you have any other questions or issues!

    Cheers!
    Yigit

    in reply to: logo and menu on mobile on top of each other #851088

    Hi,

    Please use the code as following

    @media only screen and (max-width: 767px) { 
    .responsive #top.rtl #wrap_all .main_menu {
        left: 30px!important;
        right: auto!important;
    }}

    Best regards,
    Yigit

    Hi,

    I checked your website on Chrome, Safari, Firefox and Opera but i cannot reproduce the issue as well. Which OS and screen size are you using?

    Best regards,
    Yigit

    in reply to: No Burger menu on smartphone? #851073

    Hey Michal,

    It seems like you are using WP-Super-Cache plugin. Please flush cache and refresh your page a few times. If that does not help, please create temporary admin logins and post them here privately so we can look into it.

    Best regards,
    Yigit

    in reply to: Removing rounded corners from avatar images #851071

    Hi,

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

    a.post-author-format-type * {
        border-radius: 0;
    }
    

    Best regards,
    Yigit

    in reply to: Socket – horizontal alignment issue #851070

    Hey vmoralestejedor,

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

    #socket .social_bookmarks {
        margin: -5px 0 0 30px;
    }
    

    Best regards,
    Yigit

    in reply to: logo and menu on mobile on top of each other #851069

    Hi,

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

    @media only screen and (max-width: 767px) { 
    .responsive #top.rtl #wrap_all .main_menu {
        left: 30px;
        right: auto;
    }}
    

    Best regards,
    Yigit

    in reply to: logo and menu on mobile on top of each other #851065

    Hi talelie!

    Can you please post a link of your website?

    Regards,
    Yigit

    in reply to: icons next to extra elements – close up space #851028

    Hi,

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

    @media only screen and (max-width: 480px) {
    .phone-info span {
        font-size: 14px !important;
        margin-right: 10px!important;
    }}
    

    Best regards,
    Yigit

    in reply to: Cannot assign Custom CSS class to Avia Image Elements #851023

    Hi,

    Glad Rikard could help! :)

    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Best regards,
    Yigit

    in reply to: Bold element refusing to show as blue! #851021

    Hi,

    That is because you are using an older version of the theme. Please either update the theme – kriesi.at/documentation/enfold/updating-your-theme-files/ or enable custom CSS class for ALB elements by referring to this post – http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Best regards,
    Yigit

    in reply to: Hide mobile menu #851019

    Hi,


    @seykom
    Please flush cache if you are using any caching plugin/CSS minification.
    If that still does not help, please start a new thread under Enfold sub forum and attach temporary admin logins in private content field.

    Best regards,
    Yigit

    in reply to: CSS conflict #851017

    Hi,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( do be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create a admin user and post the login credentials in the “private data” field.

    Best regards,
    Yigit

    in reply to: arrows in posts do not work properly #851015

    Hi,

    Have you made any changes on parent theme files? If not, you can simply download pre-built child theme here – http://kriesi.at/documentation/enfold/using-a-child-theme/ and install & activate it. Then go to Enfold child theme options > Import & Export and import parent theme settings. Stylesheet might need to be flushed. You can do so by simply saving Enfold child theme options.

    If you would not like to use a child theme (please note that these changes will be overwritten when you update the theme), please go to Appearance > Editor > functions-enfold.php file and find following

    	        if(version_compare($settings['wpversion'], '3.8', '>=' ))
    	        {
    	            $entries['prev'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    	            $entries['next'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    	        }
    	        else
    	        {
    	            $entries['prev'] = get_previous_post($settings['same_category']);
    	            $entries['next'] = get_next_post($settings['same_category']);
    	        }

    and change it to following

    	        if(version_compare($settings['wpversion'], '3.8', '>=' ))
    	        {
    	            $entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    	            $entries['prev'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    	        }
    	        else
    	        {
    	            $entries['next'] = get_previous_post($settings['same_category']);
    	            $entries['prev'] = get_next_post($settings['same_category']);
    	        }

    Best regards,
    Yigit

    in reply to: Changing Themes #851012

    Hi!

    Your existing website is on WordPress therefore they would migrate your site as well. For more information, you can contact Envato support :)

    Regards,
    Yigit

    in reply to: How to change overlay colour on masonry #850585

    Hi,

    0,0,0 is RGB value of the color and 0.8 is opacity level. Please adjust the values as needed in Ismael’s code.

    Best regards,
    Yigit

    in reply to: No space between image and footer/socket area #850582

    Hi,

    1- HTML was converted into signs. I corrected it.
    2- Your elements designed for mobile were not inside a color section. I placed them in color section. Please review your website

    Best regards,
    Yigit

    in reply to: icons next to extra elements – close up space #850571

    Hi,

    I inserted your icons using HTML instead of shortcodes, corrected your HTML then added following code to Quick CSS in Enfold theme options > General Styling tab

    .phone-info .av-icon-char {
        float: left;
        padding-right: 5px;
    }

    Please review your website

    Best regards,
    Yigit

    in reply to: No space between image and footer/socket area #850567

    Hi,

    1- I believe we worked on Enfold theme options at the same time. Please add your link into Copyright field as following

    
    <a href="https://resonanz-energie.de/impressum">IMPRESSUM</a>

    2- Please edit your page and use Color Section element instead. You can set your image as custom background image and then place your text inside your Color Section.

    Best regards,
    Yigit

    in reply to: sticky section on top #850562

    Hi,

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

    @media only screen and (max-width: 767px) {
    .home #after_submenu {
        display: none !important;
    }}
    

    Best regards,
    Yigit

    in reply to: How to change username to first name in my account salutation #850560

    Hi,

    Please try adding following code to Functions.php file in Appearance > Editor

    
    function set_default_display_name( $user_id ) {
      $user = get_userdata( $user_id );
      $name = sprintf( '%s %s', $user->first_name);
      $args = array(
        'ID' => $user_id,
        'display_name' => $name,
        'nickname' => $name
      );
      wp_update_user( $args );
    }
    add_action( 'user_register', 'set_default_display_name' );

    Best regards,
    Yigit

    in reply to: No space between image and footer/socket area #850557

    Hi,

    I added your link using HTML in Enfold theme options > Footer > Copyright field. Please review your website :)

    Best regards,
    Yigit

    in reply to: Margin of the color section #850554

    Hey!

    You are welcome! :)

    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Best regards,
    Yigit

    in reply to: Remove the date of posts older than… #850553

    Hey José,

    We would be glad to help you with this customization, but at the moment there is no easy way to do this by using a small custom code snippet, so I am afraid its out of the scope of our support.

    But please feel free to request such feature at our feature request system: https://kriesi.at/support/enfold-feature-requests/

    This system allows us to keep track of user suggestions and lets you vote on the feature you would like to see the most. I am afraid though there is no guarantee that a feature will get implemented. If that’s something you really need you can always try to hire a developer for the task :)

    Best regards,
    Yigit

    in reply to: Increase size of posts category page thumbnails #850549

    Hi,

    It is cropped to be square. If you would like to change it, please try the following:
    1. Install this plugin: https://wordpress.org/plugins/simple-image-sizes/
    2. Go to Settings > Media
    3. Change the square image size (increase its width / height).
    4. Regenerate the thumbnails by clicking the button at the bottom.

    Best regards,
    Yigit

    in reply to: arrows in posts do not work properly #850548

    Hey,

    Please use a child theme – http://kriesi.at/documentation/enfold/using-a-child-theme/ and add following code to Functions.php file of your child theme

    add_filter( 'avia_post_nav_entries', 'enfold_customization_postnav', 10, 2); 
    function enfold_customization_postnav($entries, $settings) {
        $entries['next'] = get_next_post($settings['same_category']);
        $entries['prev'] = get_previous_post($settings['same_category']);
        return $entries;
    }

    Best regards,
    Yigit

    in reply to: CSS conflict #850545

    Hey webthatch,

    Please change input type from Text to Number and arrows would show up automatically. It is a browser features and not theme related however input type should be the correct one :)

    Best regards,
    Yigit

Viewing 30 posts - 18,451 through 18,480 (of 82,585 total)