Forum Replies Created

Viewing 30 posts - 56,221 through 56,250 (of 67,207 total)
  • Author
    Posts
  • 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, 5 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

    in reply to: Portfolio Ajax troubleshooting #311154

    Hi!

    Thank you for using Enfold.

    Did you update WordPress recently? You’re using a very old version of the theme, 1.6, which is not compatible with the current version of WordPress. Please download the latest version from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Note that the update might break some of the elements on the theme. Version 1.6 of the theme is more than a year old and a lot has change since. You might need to reconfigure some options again or create them from scratch.

    Best regards,
    Ismael

    in reply to: Enfold > Background image > Remove on mobile #311153

    Hey!

    Thank you for the update.

    Please add the css snippet again. I guess it’s there on mobile device because of cache. Please remove the browser cache then reload the page a few times.

    Best regards,
    Ismael

    in reply to: Resizing IFRAMES #311152

    Hi autogrupo!

    Thank you for using Enfold.

    The iframe is not working, it says “Operation Time Out”. It does resize though. I’ll ask the rest of the support team to take a look.

    Cheers!
    Ismael

    in reply to: Multisite Language Switcher widget in header #311151

    Hey!

    Thank you for the link.

    You can use this on Quick CSS or custom.css to reduce the height of the secondary menu:

    #header_meta .container {
    min-height: 20px;
    top: -5px;
    }
    
    #header_meta {
    min-height: 20px;
    height: 20px;
    }

    Regards,
    Ismael

    in reply to: unable to delete dummy content #311150

    Hi!

    In case you have any questions, regarding the theme, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)
    Thanks!

    Regards,
    Ismael

Viewing 30 posts - 56,221 through 56,250 (of 67,207 total)