Forum Replies Created

Viewing 30 posts - 56,491 through 56,520 (of 67,482 total)
  • Author
    Posts
  • Hi!

    Alright. I can see what you’re seeing now. Please try to add this on Quick CSS or custom.css:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .responsive #top #header {
    position: relative;
    }
    }

    Best regards,
    Ismael

    Hi s_sscher!

    Thank you for using Enfold.

    I’m sorry but I don’t see the issue with the header. When viewed on portrait size, the shrinking header is disabled as expected. What do you mean by “no margin around the advanced_menu_toggle.”? A screenshot will help.

    Best regards,
    Ismael

    in reply to: Pb responsive – menu on logo – :/ #311654

    Hi mattv7!

    Thank you for visiting the support forum.

    Please add this on Quick CSS or custom.css to fix the logo on mobile view:

    @media only screen and (max-width: 767px) {
    .responsive .logo a, .responsive .logo img {
    margin: 0 auto;
    max-width: 100%;
    height: 60px !important;
    max-height: 60px !important;
    top: 5px;
    }
    }

    Go to Enfold > Header Layout > Mobile Menu panel then look for the Header Mobile Menu activation. Choose the second option to force the theme to show the mobile menu earlier.

    Regards,
    Ismael

    in reply to: Theme customizations not shown with Child theme #311652

    Hey originaltours!

    Thank you for using Enfold.

    If you want to edit the shortcodes like postslider.php, add this code on the child theme’s functions.php:

    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths)
    {
    $template_url = get_stylesheet_directory();
    array_unshift($paths, $template_url.'/shortcodes/');
    
    return $paths;
    }

    Create a folder called “shortcodes” then place the postslider.php there.

    Best regards,
    Ismael

    Hey!

    Try adding this on Quick CSS or custom.css:

    @media only screen and (max-width: 1340px) and (min-width: 989px) {
    .responsive .av-masonry-entry.av-landscape-img {
    width: 66.4%;
    }
    }

    Regards,
    Ismael

    in reply to: Iconbox Icons not displaying correctly #311649

    Hey!

    I’m sorry but I visited the site, first time, the icon fonts are loading just fine. Maybe what they’re seeing are the icon font placeholder (the box icon). They should wait at least a few seconds to load the icon font.

    Regards,
    Ismael

    in reply to: Easy slider no scaling is not seem to be working. #311647

    Hi mindmarketing!

    Thank you for using Enfold.

    If you want to show the exact size of the images without css interfering, you can add this on Quick CSS or custom.css:

    .avia-slideshow li img {
    width: auto;
    margin: 0 auto;
    }

    Cheers!
    Ismael

    in reply to: Twitter plug in on this website #311646

    Hi jalmz!

    Thank you for using the theme.

    I’m not sure what specific plugin Kriesi used on the sidebar but you can try this:

    https://wordpress.org/plugins/atom-twitter-feeds/
    https://wordpress.org/plugins/easy-twitter-feed-widget/

    Cheers!
    Ismael

    in reply to: Featured Image on Blog Posts #311645

    Hi!

    @nwwinc: Note that you can also change the single post view on Enfold > Blog Layout > Single Post Style. Select the Single Post with Big Preview image.


    @Breakstuff
    : Thanks for helping out. :)

    Regards,
    Ismael

    in reply to: Enfold table cell height #311644

    Hey Kevin!

    Thank you for using Enfold.

    Unfortunately, it’s not possible to specify a specific height for the tables cells. The height will automatically expand determined by the cell content. You can apply a minimum height though:

    .main_color table caption, .main_color tr:nth-child(even), .main_color .pricing-table>li:nth-child(even), .main_color table caption, .main_color tr:nth-child(odd), .main_color .pricing-table>li:nth-child(odd)  {
    min-height: 50px;
    }

    Regards,
    Ismael

    in reply to: Google Fonts in General Styling body fonts #311642

    Hi Beggers!

    Thank you for using Enfold.

    You can use this on functions.php in order to add the google fonts:

    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Yanone Kaffeesatz'] = 'Yanone Kaffeesatz:400,200,300,700';
    $fonts['Oswald'] = 'YOswald:400,300,700';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Yanone Kaffeesatz'] = 'Yanone Kaffeesatz:400,200,300,700';
    $fonts['Oswald'] = 'Oswald:400,300,700';
    return $fonts;
    }

    If you want to use it on the layer slider, go to the plugin’s panel then look for the Load Google Fonts box. Search for the google font then add it.

    Cheers!
    Ismael

    in reply to: Header – why is it so difficult ? #311641

    Hi!

    Thank you for the screenshots.

    Change the font color of the submenu links on Enfold > Advanced Styling panel. Insert the Main Menu Sublevel links element. You can apply a background on the top bar using this on Quick CSS or custom.css:

    div#header_meta {
    background: red;
    }

    Cheers!
    Ismael

    in reply to: No preview in LayerSlider #311639

    Hi!

    Thank you for using Enfold.

    The login credentials you create are incorrect. Please check. Try to deactivate the plugins then test the later slider preview again.

    Cheers!
    Ismael

    in reply to: Audio Shortcode don´t work #311638

    Hey ayron!

    Thank you for using the theme.

    The audio shortcode should look like this:

    [audio src="audio-source.mp3"]
    

    No closing tags. Make sure that you place it on the Text/HTML mode of the editor.

    Cheers!
    Ismael

    in reply to: Menu bar issue – sub-menues repeating on the page #311433

    Hi klevanet!

    Thank you for using Enfold.

    Did you import the dummy data multiple times? You haven’t created a menu in Appearance > Menus panel. You can set those menus as Enfold Main Menu, Secondary Menu or Footer Menu.

    Regards,
    Ismael

    in reply to: ICON BOX Background, Textcolor, Linkcolor, Headertext #311432

    Hey wolkenlos!

    Thank you for using Enfold.

    You can use the following:

    .main_color.iconbox_top .iconbox_icon {
    background: red;
    color: blue;
    }
    
    h3.iconbox_content_title {
    color: pink;
    }
    
    .iconbox_content_container {
    color: green;
    }
    
    .iconbox_content_container a {
    color: black;
    }

    Best regards,
    Ismael

    in reply to: Error on the web #311176

    Hey!

    Thank you for the update.

    Still not sure why it’s not working. Please try to go to wp-content/plugins folder then rename all the folders temporarily.

    If that doesn’t work, you might need to install WordPress from scratch. Please try to use this plugin to export the database: http://wordpress.org/plugins/wp-migrate-db/

    Refer to this link for more info on how to properly transfer the database:

    http://kriesi.at/documentation/enfold/move-from-a-local-installation-to-a-live-server/
    https://code.tutsplus.com/tutorials/migrating-your-wordpress-database-wp-migrate-db-production-to-development–wp-32684

    Make sure that you have a backup on your server before doing this. Much better if you can revert back to a working version of the site.

    Regards,
    Ismael

    in reply to: Parallax Issues on Safari and I think on IE #311175

    Hi!

    Thank you for the info.

    Is this the site?

    Same on Firefox and Chrome.. Please have a look. All backgrounds are set to stretch. All window heights are set to min-height 100%..

    The one on the screenshots looks different. I’m not sure where to check.

    Regards,
    Ismael

    • This reply was modified 11 years, 7 months ago by Josue.
    in reply to: Contact Form in Toggle #311173

    Hi selvaria_gmbh!

    Thank you for using Enfold.

    You can add this on Quick CSS or custom.css to hide the title:

    .avia_ajax_form h3 {
    display: none;
    }

    Cheers!
    Ismael

    in reply to: Closing the mobile menu closes modal dialog as well #311172

    Hi!

    Thank you for the info.

    Try to change the script with this:

    jQuery(window).load(function(){
    	// Find pseudo hyperlinks in DOM & assign corresponding JavaScript functionality	
    	jQuery('#menu-item-3347 a').click(function(e){
    		e.preventDefault();
    		alert('Testlink clicked.');
    	});
    });

    Cheers!
    Ismael

    in reply to: How to insert "read more" into my page. #311171

    Hi dalen550!

    Thank you for using Enfold.

    I’m sorry but the read more tag can only be use on blog posts, not text blocks.

    Best regards,
    Ismael

    in reply to: BLOG issues #311169

    Hi!

    Thank you for the screenshot.

    Try to add this on Quick CSS or custom.css:

    .entry-content {
    word-break: break-word;
    }

    Cheers!
    Ismael

    in reply to: Pages sidebar widget #311167

    Hi!

    Thank you for the login credentials but I think you forgot the link to the website. Please post it here.

    Regards,
    Ismael

    in reply to: change DOT into other sign i.e + on list #311163

    Hey studiokatowice!

    Thank you for using Enfold.

    Please use this on Quick CSS or custom.css:

    #top .widget_nav_menu ul ul li:before {
    content: "+";
    position: absolute;
    top: 5px;
    }

    Regards,
    Ismael

    in reply to: Multiple Progress Bars #311162

    Hey victor!

    Thank you for using Enfold.

    Please go css > shortcodes.css, look for the codes starting from 2565. For example, if you select the Bar Color to blue, just look for this code:

    .blue-bar .bar{
    background: #7bb0e7;
    background-image:	-webkit-linear-gradient(-45deg, #96C8FB 25%, #74a6d9 25%, #74a6d9 50%, #96C8FB 50%, #96C8FB 75%, #74a6d9 75%, #74a6d9);
    background-image:      -moz-linear-gradient(-45deg, #96C8FB 25%, #74a6d9 25%, #74a6d9 50%, #96C8FB 50%, #96C8FB 75%, #74a6d9 75%, #74a6d9);
    background-image:           linear-gradient(-45deg, #96C8FB 25%, #74a6d9 25%, #74a6d9 50%, #96C8FB 50%, #96C8FB 75%, #74a6d9 75%, #74a6d9);
    }
    

    Replace it with:

    .blue-bar .bar{
    background: #7bb0e7;
    background-image:	-webkit-linear-gradient(-45deg, #74a6d9 25%, #74a6d9 50%, #74a6d9 75%, #74a6d9);
    background-image:      -moz-linear-gradient(-45deg, #74a6d9 25%, #74a6d9 50%, #74a6d9 75%, #74a6d9);
    background-image:           linear-gradient(-45deg, #74a6d9 25%, #74a6d9 50%, #74a6d9 75%, #74a6d9);
    }
    

    We removed the secondary or dark color. :)

    Best regards,
    Ismael

    in reply to: Problems with newest post showing up on blog section #311161

    Hi!

    Thank you for the info.

    Please post the login details here. We would like to check it.

    Regards,
    Ismael

    in reply to: Magic wand symbol missing #311160

    Hey!

    No, it should be there by default. Please try to deactivate the plugins specially the one that is adding an icon on the toolbar.

    Best regards,
    Ismael

    in reply to: Problems with menu #311159

    Hi Benjamin!

    Thank you for visiting the support forum.

    Please go to Enfold > Header Layout > Mobile Menu panel then look for the Header Mobile Menu activation setting. Choose the second option to force the theme to show the mobile menu earlier.

    Best regards,
    Ismael

    in reply to: Add image to header in upper right, near social icons #311156

    Hi!

    Thank you for the update.

    I checked the website and the live-help image is showing up fine. I guess you figured it out.

    Best regards,
    Ismael

    in reply to: Menu height and border #311155

    Hi!

    Thank you for that info but we need to see what’s inside. I mean, we need to see the code. You actually add the font face code on the Quick CSS field or the custom.css file. What are the font file formats that you have?

    Best regards,
    Ismael

Viewing 30 posts - 56,491 through 56,520 (of 67,482 total)