Forum Replies Created

Viewing 30 posts - 57,781 through 57,810 (of 67,602 total)
  • Author
    Posts
  • in reply to: Links on Layerslider are not working #286523

    Hi!

    Glad it works. You can actually apply a background on the menu. Use this:

    .html_header_top #top .av_menu_left .main_menu {
    background: yellow;
    }

    Best regards,
    Ismael

    in reply to: Please contribute and translate Enfold #286520

    Hi!

    Again, we would like to thank you for translating the file. Try using the html entity of the percent symbol. Please refer to this link: http://www.freeformatter.com/html-entities.html

    Cheers!
    Ismael

    in reply to: Invoke mobile menu at different breakpoint #286518

    Hey!

    You can decrease the font size of the menu items then decrease the padding further:

    @media only screen and (max-width: 1140px) {
    .main_menu ul:first-child > li > a { 
    padding: 0 7px; 
    font-size: 12px;
    }
    }
    

    Cheers!
    Ismael

    in reply to: Transparency Menu #286517

    Hi Andrea!

    Thank you for using the theme!

    Please edit js > avia.js, find this code on line 1198:

    if(transparent)
                    {
                    	if(st > 50)
                    	{
                    		header.removeClass('av_header_transparency');
                    	}
                    	else
                    	{
                    		header.addClass('av_header_transparency');
                    	}
                    }

    Replace it with this:

    if(transparent)
                    {
                    	if(st > 600)
                    	{
                    		header.removeClass('av_header_transparency');
                    	}
                    	else
                    	{
                    		header.addClass('av_header_transparency');
                    	}
                    }

    Remove browser cache then reload the page a few times.

    Regards,
    Ismael

    in reply to: How to hide Fullscreen Slider on mobile devices? #286515

    Hi!

    The iPad device has a screen resolution of 1024x768px. Please try this:

    @media only screen and (max-width: 1025px) {
      /* Add your Mobile Styles here */
    	.hidden-desktop {display:block !important;}
    	.visible-desktop {display:none !important;}
    }

    Cheers!
    Ismael

    in reply to: Google Maps API Multiple Times in backend #286507

    Hey two_worlds!

    What is the plugin that you’re using? Please try this on functions.php:

    add_filter('avf_load_google_map_api', 'disable_google_map_api', 10, 1);
    
    function disable_google_map_api($load_google_map_api) {
    	$load_google_map_api = false;
    	return $load_google_map_api;
    }

    I’m not sure if this is going to work. I’ll ask Dude to check the thread.

    Regards,
    Ismael

    • This reply was modified 11 years, 10 months ago by Ismael.
    in reply to: Problems with Internet Explorer #286503

    Hey!

    Thank you for using the theme!

    Not sure why the site is not loading on my end. I’ll ask the rest of the support team to check the page. Where are you hosting the site?

    Cheers!
    Ismael

    Hey!

    I’m really sorry but we can’t provide any further support for this plugin. You may need to investigate this particular issue on your own or hire someone to fix the compatibility issues of the plugin with the theme.

    Thank you for your understanding.

    Best regards,
    Ismael

    in reply to: Nav Menu goes missing in mobile view #286501

    Hey!

    Not sure why it’s not working by default but please add this on Quick CSS or custom.css:

    @media only screen and (max-width: 767px) {
    #advanced_menu_toggle, #advanced_menu_hide {
    right: 10px;
    display: block;
    }
    }

    Best regards,
    Ismael

    Hey!

    The border looks fine on Firefox 30.0. This is the screenshot on my end:

    Best regards,
    Ismael

    in reply to: Mailchimp Sign Up form on one Line #286498

    Hey!

    Please post the login details here and set it as a private reply. We would like to check it.

    Best regards,
    Ismael

    in reply to: Enfold Showcase #286497

    Hi!

    Damn! I don’t have 3D glasses. Awesome website. Unique. :)

    Regards,
    Ismael

    in reply to: masonry galley loading all items in gallery library #286496

    Hi!

    Did you modify anything on the theme files? The permalink structure is incorrect, you set it to custom then add /gallery on the field. I corrected it but it hasn’t affected the masonry gallery as expected. The elements is still not storing the gallery images. This is the test page: http://rebornhair.com.au/wp/gallery-test/

    Best regards,
    Ismael

    in reply to: social media icons / buttons #286493

    Hey!

    Thank you for the update.

    Must be a plugin conflict. Please deactivate all plugins then test it again. Try logging out. If possible, please create another user and give it administrator access. Test this user account.

    Regards,
    Ismael

    in reply to: Get rid of gravatar icons & preview pics in blogs #286492

    Hey DaddyDizz!

    Thank you for visiting the support forum!

    1.) You can disable the featured image for each post, just tick the option below the featured image metabox. Another thing that you can do is to add this on Quick CSS or custom.css:

    .single div.big-preview.multi-big, .single .blog-meta {
    display: none;
    }

    2.) I’m not entirely certain what you mean. Can you please elaborate?

    Best regards,
    Ismael

    in reply to: Getting Multi Columns using Contact Form 7 #286490

    Hey P. Bert!

    Thank you for using the theme.

    Can you explain the issue further? A link to the page and screenshot of what you’re trying to do will help.

    
    <div class="flex_column av_one_half first">
    <p>Your Message 1</p>
        [textarea your-message-1]
    </div>
    
    <div class="flex_column av_one_half"> 
    <p>Your Message 2</p>
    [textarea your-message-2]  
    </div>
    

    Regards,
    Ismael

    in reply to: Facebook icon in widget area? #286489

    Hi!

    If you don’t want to recreate it on a post or page using the shortcode wand. Please switch your advance layout builder to debug mode. Edit function.php, find this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;
    

    Below, add this code:

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    return "debug";
    }

    You will be able to see the actual shortcode below the builder.

    Regards,
    Ismael

    in reply to: Responsive Issues on Mobile #286487

    Hi!

    Thank you for the update.

    The text on the layer slider are showing up fine on mobile view. They are small but they’re there. You can hide them on mobile device. Edit the layers then go to Attributes panel. Add a custom classes, “hide-on-mobile” for example. Add this on Quick CSS or custom.css:

    @media only screen and (max-width: 767px) {
    .hide-on-mobile {
    display: none !important;
    }
    }

    Cheers!
    Ismael

    in reply to: Big issue bug updating changes not take effect #286485

    Hi!

    We’ll keep the thread open. I hope it fix the issues. Please let us know.

    Best regards,
    Ismael

    in reply to: Something is breaking the layout of two pages. #286484

    Hi!

    The page http://www.breastcenterofacadiana.com/test does not exist. We haven’t tested it yet. Please create it again duplicating the content of the page with footer issue. Please don’t add the extra div.

    Best regards,
    Ismael

    in reply to: Facebook icon in widget area? #286483

    Hey robertwood04!

    Thank you for using the theme.

    Just copy the shortcode then go to Appearance > Widgets. Place the shortcode on a Text widget.

    Regards,
    Ismael

    in reply to: Responsive Menu #286480

    Hi TheBiZWeavers!

    Thank you for visiting the support forum!

    I’m sorry but the website is not using the Enfold theme. Please check.

    Best regards,
    Ismael

    in reply to: Disable theme bundled version of layerslider #286478

    Hey!


    @melonmelon
    : Thank you for the explanation. Yes, that’s correct.


    @revion
    : Please use a child theme in order to preserve the modifications on future updates. Refer to this link for more info: http://kriesi.at/documentation/enfold/using-a-child-theme/

    Regards,
    Ismael

    in reply to: Blog Posts Not Linking after Publishing #286476

    Hey Jason!

    Thank you for using the theme.

    How do you schedule a blog post? Is this from a plugin feature? If so, regretfully, we won’t be able to provide support for third party plugins as stated on our support policy. You may need to direct the question on the plugin author. Please post the website url here.

    Best regards,
    Ismael

    in reply to: top navigation language selector #286475

    Hey!

    Thank you for the update.

    You need to create the menu first on Appearance > Menus panel then set it as Enfold Secondary Menu. After that, go to the WPML panel. Look for the “Display the language switcher in the WP Menu” option. Select the secondary menu on the list.

    Best regards,
    Ismael

    in reply to: Portfolio hover effects on single pictures #286468

    Hey mikel!

    Thank you so much for using the theme!

    Please edit the image elements then apply an Image Link to them. The hover effect will be automatically added on images enclosed with a link tag.

    Best regards,
    Ismael

    in reply to: What are preview images? #286461

    Hey!

    Thank you for the update.

    You can add this on Quick CSS or custom.css if you want to remove the menu on the header:

    .avia-menu ul li.menu-item {
    display: none;
    }
    
    #top #menu-item-search {
    display: block;
    }

    Regarding the masonry element, yes, you need to add featured images in order to show images on the masonry overview page. No, it can’t pick up the the images that you added on the editor. If you want it to work that way, please hire a freelance developer. Please visit Envato Studio or Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.

    Cheers!
    Ismael

    in reply to: Adding Background color and need to find on style.css #286458

    Hi!

    Thank you for using the theme!

    You can change the styling of the site on Enfold > Genera Styling panel. Look for the Body Background color. In case you have any questions, 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. :)

    Cheers!
    Ismael

    in reply to: Responsive Layout Problems #286457

    Hey!

    Thank you for using the theme.

    The theme is set to static layout. If you want to make it responsive, go to Enfold > Theme Options > Responsive Layout active? settings. Enable the responsive layout. Regarding the table, please set the Table Purpose to tabular data and the Responsive Styling to scrollable.

    Regards,
    Ismael

    in reply to: facebook open graph meta tags #286455

    Hey!

    If you decided to go with the Yoast SEO plugin, go to the SEO > Social Panel then enable the Add Open Graph meta data.

    Regards,
    Ismael

Viewing 30 posts - 57,781 through 57,810 (of 67,602 total)