Forum Replies Created

Viewing 30 posts - 57,421 through 57,450 (of 67,197 total)
  • Author
    Posts
  • in reply to: Mailchimp Sign Up form on one Line #286040

    Hey!

    Thank you for using the theme!

    Please add this on Quick CSS or custom.css:

    #mc_embed_signup input.button {
    float: left;
    width: 35%;
    clear: none;
    background-color: #4ccdde;
    color: #ffffff;
    border-color: #2aabbc;
    }
    
    #mc_embed_signup input.email {
    width: 45%;
    float: left;
    clear: none;
    }

    Best regards,
    Ismael

    in reply to: General Styling and Quick styling not working #286039

    Hi springs19!

    Thank you for using the theme!

    Please post the website url here. If possible, please deactivate all plugins then select a predefined color scheme. If that doesn’t work, go wp-content/uploads/dynamic_avia folder. Delete the enfold.css file then change the color settings again.

    Best regards,
    Ismael

    in reply to: Background image on Mobile #286037

    Hi!

    Thank you for the link.

    Please use this on Quick CSS or custom.css:

    @media only screen and (max-width: 480px) {
    #av_section_2 .av-parallax.avia-full-stretch {
    background-size: 100% auto;
    background-position: top center !important;
    background-attachment: fixed !important;
    }
    }

    Cheers!
    Ismael

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

    Hey!

    I tried to access the website but it takes me to a Forbidden error page. Regarding the title capitalization, just add this on Quick CSS or custom.css:

    .template-page .entry-content-wrapper h1, .template-page .entry-content-wrapper h2 {
    text-transform: none;
    letter-spacing: 1px;
    }

    Also, the WP Super Cache plugin is not installed correctly.

    <!-- WP Super Cache is installed but broken. The constant WPCACHEHOME must be set in the file wp-config.php and point at the WP Super Cache plugin directory. -->
    

    Please go to wp-content/plugins folder. Delete the cache plugin then install it again.

    Best regards,
    Ismael

    Hi!

    Please post a page where this is happening. I checked the link http://www.ticettac.net/wp_eloise/navire/ on Firefox and the border looks fine.

    Best regards,
    Ismael

    in reply to: social icons shortcode #286034

    Hey!

    Glad it worked.

    It is actually weird. I’m not really sure why it’s acting that way. The mail icon should come first by default because of the way the shortcodes are laid out.

    Regards,
    Ismael

    in reply to: social media icons / buttons #286033

    Hi!

    Did you add the custom css selector? Use this:

    .linkedin-icon {
    line-height: 45px !important;
    }

    Cheers!
    Ismael

    Hey thomasappell!

    Thank you for using the theme!

    I don’t see any audio element or shortcodes on the page. What is the format of your audio file? On what kind of mobile device are you testing this with?

    Regards,
    Ismael

    in reply to: Issues after updating to latest version #286031

    Hey!

    I’m not so sure what’s the actual offending code but I’m sure that the code is an attempt to fix the slider since we don’t have the access on the layer slider at first. Please remove it if it’s breaking the slider. We’re very sorry for the inconvenience.

    Regards,
    Ismael

    in reply to: Hide "blog" Breadcrumbs #286028

    Hey!

    Thank you for using the update.

    Remove the hierarchy between the Blog and Blog grid pages. Edit the page, look for Page Attributes > Parent setting. Add this on functions.php:

    add_filter('avia_breadcrumbs_trail', 'avia_change_breadcrumb', 10, 1);
    function avia_change_breadcrumb($trail) {
    if(is_single() && get_post_type() == "post")
    {	
    	$home 		= $trail[0];
    	$last 		= array_pop($trail);
    	unset($trail);
    	
    	$trail[0] = $home;
    	$trail[]  = $last;
    }
    return $trail;
    }

    Best regards,
    Ismael

    Hi!

    Thank you for the update.

    Please check your custom css, look for this code:

    @media only screen and (max-width: 768px) {
    .phone-info with_nav, span {
    display: none;
    }
    }

    Replace it with:

    @media only screen and (max-width: 768px) {
    .phone-info with_nav {
    display: none;
    }
    }

    There should be no span selector there because it will remove all span elements on the theme including the menu item titles.

    Best regards,
    Ismael

    in reply to: Text highligted in Bold uses wrong Font #286018

    Hi!

    Thank you for the screenshot.

    I’m not exactly sure what you’re trying to show on the screenshot. The blue font looks smaller because of the black background but they have the same size if you check it on any image editor:

    Best regards,
    Ismael

    in reply to: Problems with Enfold masonry with Taxonomy Filter #286017

    Hi!

    Thank you for the update.

    You’re using an old version of the theme, 2.6.2. Please download the latest version 2.8.1 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/

    Cheers!
    Ismael

    in reply to: Portfolio grid spacing #286015

    Hi!

    Thank you for the update.

    Please use this on the child theme’s functions.php if you want to load avia.js on the child theme folder:

    if(!is_admin())
    {
    	add_action('wp_enqueue_scripts', 'avia_register_child_frontend_scripts', 100);
    }
    
    function avia_register_child_frontend_scripts()
    {
    	$child_theme_url = get_stylesheet_directory_uri();
    
    	//register js
    	wp_register_script( 'avia-default-child', $child_theme_url.'/js/avia.js', array('jquery'), 1, false );
    	wp_enqueue_script( 'avia-default-child' );
    }

    Regards,
    Ismael

    in reply to: Problem with Masonry Gallery after update? #286014

    Hi!

    Thank you for the update.

    On the development site, you’re using a boxed layout and the masonry gallery is not inside a 1/1 column layout. Please switched to boxed layout then move the elements outside the 1/1 layout column. I already edited the page but I left the 1/1 column there in case.

    Regards,
    Ismael

    in reply to: Homepage slider not displaying #286011

    Hi!

    Thank you for the update.

    It is loading now. The layer slider is working fine when I checked it. Please remove browser cache then test it again.

    Regards,
    Ismael

    in reply to: ENFOLD : Text Box fonts keep turning color. #286009

    Hi!

    Thank you for the update.

    Please check the special heading “Our Programs”, remove the second strong tag. Make sure that you close the tag.

    Best regards,
    Ismael

    in reply to: Masonry galleries don't load #286007

    Hey!

    Thank you for the update.

    The last masonry is now working. Please remove browser cache then reload the page a few times. If possible, test it on another computer.

    Best regards,
    Ismael

    Hi!

    Thank you for the link.

    Please add this on Quick CSS or custom.css:

    body .column-top-margin {
    margin-top: 20px;
    }

    Regards,
    Ismael

    in reply to: Transparent header problem #285569

    Hi!

    I’m not sure how it affected the menu color. The css is to fix the logo transition. Where did you add the css snippet? I can’t find it on custom.css or Quick CSS (dynamic_avia.css) field.

    Cheers!
    Ismael

    in reply to: Tabs highlighted in color (responsive) #285567

    Hi Damian!

    Thank you for visiting the support forum!

    What do you mean by “highlighted as responsive”? Can you please explain it further? A screenshot will definitely help.

    Cheers!
    Ismael

    in reply to: Homepage slider not displaying #285566

    Hi grp1958!

    Thank you so much for using the theme!

    The links leads me to a 404 page. Please check. What type of slider are you using?

    Cheers!
    Ismael

    in reply to: Simple inline html codes #285559

    Hey!

    In addition to this, try to add a class selector on a br tag. Something like this:

    <br class="blank" />
    

    You can also use the HR (Horizontal Rule) element / shortcode if you want.

    Best regards,
    Ismael

    in reply to: Add phone number between logo and menu in header #285544

    Hi!

    Thank you for using the theme.

    I checked the site Gravity Forms, it loads fine this time but it’s not using Enfold. Try to add this on Quick CSS to hide the header_meta container:

    #header_meta .container {
    min-height: 0;
    height: 1px;
    margin-top: -1px;
    }

    Best regards,
    Ismael

    in reply to: Transparent header problem #285542

    Hey brentd99!

    Thank you for using the theme!

    Please use this on Quick CSS or custom.css:

    img.alternate {
    display: none;
    }
    
    .av_header_transparency img.alternate {
    display: block;
    }

    Cheers!
    Ismael

    in reply to: Enfold Theme Issues #285541

    Hey!

    I’m sorry but the login credentials are incorrect. Please check. I checked the website and the content is not being cut off at the edge. Please try to remove or deactivate all the chrome’s browser extension then test it again. Note that you’re using a cache plugin, please deactivate this while working on the site.

    Cheers!
    Ismael

    in reply to: Mega Menu Limits #285540

    Hi deerstonedevelopment!

    Thank you so much or using the theme.

    If you have access to the php.ini file, increase the max_input_vars option to 3000 or more. You can ask your host to do it for you.

    Cheers!
    Ismael

    in reply to: Issues with iPad and iPhone menu display #285539

    Hey!

    Thank you for using the theme!

    Not sure why the mobile icon color changed but you can adjust it with this:

    #advanced_menu_toggle, #advanced_menu_hide {
    background-color: #ffffff;
    color: #333333;
    border-color: #e1e1e1;
    }

    Cheers!
    Ismael

    in reply to: How to add 2 different footer column widths? #285527

    Hi!

    You can add something like this on the plugin’s form field:

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

    Cheers!
    Ismael

    Hi!

    You can use this for the mobile menu font:

    #mobile-advanced a, #mobile-advanced .mega_menu_title {
    font-size: 20px;
    padding: 13px 28px;
    }

    Cheers!
    Ismael

Viewing 30 posts - 57,421 through 57,450 (of 67,197 total)