Forum Replies Created

Viewing 30 posts - 31,171 through 31,200 (of 33,819 total)
  • Author
    Posts
  • in reply to: Tab Section is not Responsive #841437

    Hi,
    That’s great news!
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Use all enfold demo theme content #841435

    Hi,
    Please download the icon set here
    and use the import option at Enfold Theme Options > Import/Export > Upload/Select Fontello Font Zip

    Best regards,
    Mike

    Hey hmuscroft,
    If you use the inspector in your browser, you can hide them on some pages like this:

    .postid-1, .page-id-2 .title_container {display:none !important; }

    but if you have many pages you may wish to use a plugin.

    Best regards,
    Mike

    in reply to: Google pagespeed #841424

    Hey Candratech,
    Have you tried a caching plugin? I like https://wordpress.org/plugins/wp-fastest-cache/
    Perhaps a combine and minify plugin such as https://wordpress.org/plugins/merge-minify-refresh/
    I have not tried that one, but there are many to choose from
    This article may help: http://www.wpbeginner.com/plugins/how-to-minify-css-javascript-files-in-wordpress/

    Best regards,
    Mike

    in reply to: Problem with theme personalization : menu part #841421

    Hi,
    I would be able to better answer after I see your site, thank you for the login details, but we don’t know your URL.

    Best regards,
    Mike

    in reply to: Changing Fonts #841418

    Hey servingpaleo,
    If you find your page ID using the inspector in your browser, you can target one page or an element with code like this:

    
    /* this is for one page */
    body.page-id-1 p { 
        font-family: Raleway;
    }
    /* this is for one element */
    .avia-builder-el-45 p {
        font-family: Raleway;
    }

    2017-08-19_150145

    Best regards,
    Mike

    in reply to: Product page issue on smart phone #841413

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Remove Social Media Bar #841411

    Hi,
    I went to Enfold Theme Options > Header > Extra Elements > Header Social Icons > and choose No Social Icons
    2017-08-19_144306
    Best regards,
    Mike

    in reply to: Tab Section is not Responsive #841405

    Hi,
    I may have found something that will help, please see:

    Best regards,
    Mike

    in reply to: Tab Section is not Responsive #841403

    Hi,
    Oh, I see now. I’m so sorry. I removed the code.
    I think both of your issues, on both tickets, have to do with the translation plugin.
    I will have to research more, and I will ask for help.
    Please reply back so your ticket stays activate.

    Best regards,
    Mike

    Hey kanzlei_werner,
    To reduce the padding try:

    .content, .sidebar {padding-top: 0px!important; }

    the !important; should help.
    For your second question, I would recommend changing your menu to the colors you want for all your pages, and then using custom css for your home page. Because you have a lot of other pages.

    #top.home #header_main.container_wrap.container_wrap_logo {background-color: #000 !important;}
    #top.home .logo img {display:none !important; }
    #top.home .header_color .main_menu ul:first-child > li > a, #top.home .header_color .main_menu ul:first-child > li.current-menu-item > a, #top.home .header_color .main_menu ul:first-child > li.current_page_item > a {color: #fff !important;}

    Please see screenshot in Private Content area to ensure I’m targeting the right areas
    note that in my screenshot it is a lighter black to show the area. Please adjust the colors above to suit.

    Best regards,
    Mike

    in reply to: Problem with Image hover #841384

    Hi,
    OK, I removed the code.

    Best regards,
    Mike

    in reply to: Tab Section is not Responsive #841379

    Hi,
    I’m sorry, I getting confused, I thought we were trying to remove the blank spot after the tabs.
    This was before:
    2017-08-19_123754
    This is after:
    2017-08-19_123843
    The clicking of the tabs work the same for me on both sites, except that /fa/ site has a slide animation.

    Best regards,
    Mike

    in reply to: vertical align element #841371

    Hi,
    Please try this code in the General Styling > Quick CSS field:

    @media only screen and (min-width: 1440px) { 
    .av_one_fifth .av_textblock_section {min-height: 120px !important; }}
    
    @media only screen and (min-width: 1024px) and (max-width: 1039px) { 
    .av_one_fifth .av_textblock_section {min-height: 168px !important; }}
    
    @media only screen and (min-width: 767px) and (max-width: 1023px) { 
    .av_one_fifth .av_textblock_section {min-height: 216px !important; }}

    it makes the text sections in each box the same height, which aligns the boxes. I wrote it for the 3 top screen sizes.
    I noticed that you middle box in the top line is missing top and bottom padding, please check in the backend.
    2017-08-19_130907
    Please clear your cache :)

    Best regards,
    Mike

    in reply to: Tab Section Automatically Scrolled Up the Page #841362

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Tab Section is not Responsive #841361

    Hi,
    I forgot a ending curly bracket, I logged in and added it to your Customize > Additional CSS
    and it works for your /fa/ site.
    Please clear your cache and check.
    The correct code:

    @media only screen and (min-width: 768px) { 
    .av-tab-section-tab-title-container {left: 0px!important; }}
    @media only screen and (max-width: 767px) { 
    .av-layout-tab {padding: 0px !important; }}

    Best regards,
    Mike

    in reply to: Problem with Image hover #841355

    Hi,
    I logged in and added this code to your General Styling > Quick CSS field

    .image-overlay-inside, .image-overlay {display:none !important; }

    and it removed your hover effect for your first URL
    But for your second URL I had to add it to your Customize > CSS
    See Private Content area for the two URLs
    Please clear your cache and check.

    Best regards,
    Mike

    in reply to: Zen Menu Logic not working with New Enfold Mobile Menu #841320

    Hi,
    There are two new fixes for the Zen menu logic plugin.
    1) in enfold/functions-enfold.php on line 163 find:

    if( class_exists( 'ZenOfWPMenuLogic' ) )

    change to

    if( class_exists( 'ZenOfWPMenuLogic' ) || class_exists( 'Themify_Conditional_Menus' ) )

    2) For Zen Menu Logic breaks burger menu icon, in /enfold/functions-enfold.php on line 131 just above:

    /* Append the burger menu */

    add

    /* Fix for Zen Menu Logic plugin - removes theme location from menu array to exchange the menus */
     if( ! function_exists( 'avia_save_menu_location' ) )
     {
     	add_filter('wp_nav_menu_args', 'avia_save_menu_location', 1, 1 );
     	
     	function avia_save_menu_location( $args )
     	{
     		global $avia_config;
     		
     		$avia_config['current_menu_location_output'] = isset( $args['theme_location'] ) ? $args['theme_location'] : '';
     		
     		return $args;
     	}
     }

    also on line 141 change:

    if ((is_object($args) && $args->theme_location == 'avia') || (is_string($args) && $args = "fallback_menu"))

    to

    global $avia_config;
     		
     		$location = ( is_object( $args ) && isset( $args->theme_location ) ) ? $args->theme_location : '';
     		
     		/*	Bugfix for for Zen Menu Logic plugin - removed theme location from menu array to exchange the menus		*/
     		if( class_exists( 'ZenOfWPMenuLogic' ) )
     		{
     			$location = isset( $avia_config['current_menu_location_output'] ) ? $avia_config['current_menu_location_output'] : '';
     		}
     		
     	    if ((is_object($args) && $location == 'avia') || (is_string($args) && $args = "fallback_menu"))

    If you feel un-comfortable with these changes, you can wait for the next update to include them.
    Please backup files before making changes.

    Best regards,
    Mike

    in reply to: Problem with Image hover #841308

    Hey Sadegh,
    Try this code in the General Styling > Quick CSS field:

    .image-overlay-inside {display:none !important; }

    Best regards,
    Mike

    in reply to: Site is just gone #841306

    Hey edamon,
    Your white screen homepage has no source code, your index maybe corrupt.
    Try to update manually via FTP: https://vimeo.com/67209750
    Or: http://kriesi.at/archives/the-complete-guide-to-updating-enfold

    Best regards,
    Mike

    Hi,
    Can you please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Automatic apostrophe replacement in a special header #841303

    Hi,
    Thank you, we will look for your reply then.

    Best regards,
    Mike

    in reply to: Parallax effect with layer slider #841301

    Hey kanzlei_werner,
    Try using a color section with background image set to fixed, in the demo the height is 500px.
    For the headline, try using a special heading element.
    2017-08-19_103832
    2017-08-19_104548
    2017-08-19_104641
    2017-08-19_104818
    Hope these screenshots of the settings help.

    Best regards,
    Mike

    in reply to: Change font size of category options in Magazine element #841298

    Hi,
    Try this code in the General Styling > Quick CSS field:

    .av-magazine-sort{
    font-size: 20px !important; 
    }

    Best regards,
    Mike

    in reply to: Change Text of german Read more link ("Weiterlesen") #841297

    Hi,
    Both “Weiterlesen” and “Schlagworte” are listed in enfold/lang/de_DE.po
    and you should be able to edit it with a plain text editor such as Sublime or Notepad++
    then upload with FTP. I suggest you save a copy of de_DE.po before you edit it, just in case.

    Another option for the read more text: Try adding this code to the end of your functions.php file in Appearance > Editor:

    function modify_read_more_link() {
        return '<a class="more-link" href="' . get_permalink() . '">Your Read More Link Text</a>';
    }
    add_filter( 'the_content_more_link', 'modify_read_more_link' );

    Best regards,
    Mike

    Hi,
    Try this code in the General Styling > Quick CSS field to set the big preview image size:

    .big-preview img {width: inherit!important;}

    Best regards,
    Mike

    in reply to: Tab Section is not Responsive #841289

    Hey Sadegh,
    Try this code in the General Styling > Quick CSS field:

    
    @media only screen and (min-width: 768px) { 
    .av-tab-section-tab-title-container {left: 0px!important; }}
    @media only screen and (max-width: 767px) { 
    .av-layout-tab {padding: 0px !important; }

    Best regards,
    Mike

    in reply to: Enfold Error after right installing #841286

    Hey jumamedia,
    Please try updating your version of PHP to v7.x
    You should be able to update the version of PHP you are running in the administration of your hosting provider. If not then please contact them directly to ask them if they can do it for you.

    Best regards,
    Mike

    in reply to: Horizontal Gallery, image captions #841274

    Hey tl_s180,
    At the moment there is not a way to easily do this, but the option to choose what image text you want to display below the images is being worked on now.

    Best regards,
    Mike

    Hey Mulholr1,
    Sorry the strong tag also has associated color to it in the theme, but you could manually use the older <b></b> bold tags and choose black for your text color. I tested this and it doesn’t effect the <strong> tags.
    Here’s the CSS to change the b tag to black

    .main_color b {color: #000 !important;}

    Try adjusting to suit.

    Best regards,
    Mike

Viewing 30 posts - 31,171 through 31,200 (of 33,819 total)