Forum Replies Created

Viewing 30 posts - 59,581 through 59,610 (of 67,155 total)
  • Author
    Posts
  • in reply to: area on home page not responsive #241734

    Hey!

    There is a left margin that is pushing the form to outer right of the website when viewing on smaller screens. You can use media queries to adjust the left margin on different sizes:

    @media only screen and (min-width: 768px) {
    #mc_embed_signup {
    margin-left: 250px;
    }
    }

    Cheers!
    Ismael

    in reply to: Slow website #241733

    Hey primdogg!

    Unoptimized images can really slow down a website. You might want to reduce the size a bit without affecting the quality. Use cache and minify plugins. Common plugins used are:

    http://wordpress.org/plugins/w3-total-cache/
    http://wordpress.org/plugins/bwp-minify/

    Cheers!
    Ismael

    Hey abedia!

    I’m sorry but what do you mean by “decide for the column width”? You can insert the table element inside the column layouts. Please post a screenshot of what you’re trying to do.

    Best regards,
    Ismael

    in reply to: Enfold extremly slow #241729

    Hi!

    Is this the page? http://www.kindbo.com/blogg/

    Please post the login details here and set it as a private reply. We would like to check it. We don’t usually support third party plugins, you might want to contact the plugin author.

    Cheers!
    Ismael

    Hey starshyne!

    1.) Did you disable these settings on Settings > Discussion?

    An administrator must always approve the comment
    Comment author must have a previously approved comment

    Please check the setting “Comment Moderation” and increase the value.

    2.) Can you please give us a link to the actual page with the issue?

    Regards,
    Ismael

    in reply to: MY-Account site is not working #241726

    Hey!

    Thank you for using the theme. I hope you’re doing great.

    The login details are incorrect. Please check.

    Regards,
    Ismael

    in reply to: https #241725

    Hey Konstantin!

    Unfortunately, you have to use a plugin for https. Anyway, you can request the feature here: https://kriesi.at/support/enfold-feature-requests/

    You’ll have 5 votes every month which you can use to vote for a certain feature. You can use these votes on a single feature or spread them between several requests.

    Regards,
    Ismael

    in reply to: Portfolio Entry #241724

    Hi Viramedia!

    The additional portfolio settings and image gallery are for the portfolio ajax preview. This is an example of the ajax portfolio: http://kriesi.at/themes/enfold/portfolio/portfolio-ajax/

    Regards,
    Ismael

    in reply to: Font bolder on mobile devices #241723

    Hey intosuwo!

    You can use this on Quick CSS to change the font weight on mobile devices:

    @media only screen and (min-width: 768px) {
    body, body p {
    font-weight: bold;
    }
    }

    There are other texts or string that you might need to target specifically.

    Cheers!
    Ismael

    in reply to: Ajax Portfolio Main Image is Blurry #241722

    Hey!

    You can use this on the child theme’s functions.php:

    function avia_change_image_size_array() {
    global $avia_config;
    $avia_config['imgSize']['gallery'] = array('width'=>900, 'height'=>600 );						// images for portfolio entries (2,3 column)
    avia_backend_add_thumbnail_size($avia_config);
    }
    add_action( 'init', 'avia_change_image_size_array', 1);

    Cheers!
    Ismael

    in reply to: Not full width slider+text editing #241721

    Hi!

    1.) If you want to change the style of a specific element on a certain page or post, you can use the Google Chrome Inspect Element. Look for the unique css body class.

    On the example above, the page’s unique selector is .page-id-2251. We can use it to change the element within that page.

    .page-id-2251 #header_main .av-special-heading { margin-top: 90px; }
    

    2.) You can manually type it right before the paragraph or sentence that you want to use as excerpt. Refer to this link: http://codex.wordpress.org/Customizing_the_Read_More

    3.) No, sorry but you can’t use layer sliders inside column layouts.

    Please watch these videos to learn more about the theme: http://vimeo.com/channels/aviathemes

    Refer to this link for more info: http://kriesi.at/documentation/enfold/

    Best regards,
    Ismael

    in reply to: Enfold Demo not shrinking menu on tablets #241532

    Hey!

    You’re not using the latest version of Enfold. Please download 2.6.2 from your themeforest account then update the theme via FTP. Watch this video by Devin: http://vimeo.com/channels/aviathemes/67209750

    Cheers!
    Ismael

    in reply to: Problems With Menu After Update #241531

    Hey!

    Have you tried to reconfigure the header options? Some users’ problem was fixed by simply changing a few options on Enfold > Header then saving it. Did you copy the header.php file on the child theme folder? If yes, then delete the header.php on your child theme folder. Get the new header.php file from the parent theme folder and copy it to your child theme folder. You can see the header element codes like logo, menu etc on includes > helper-main-menu.php.

    Do you mind posting the login details here? Set it as a private reply.

    Cheers!
    Ismael

    in reply to: removing title & breadcrumb doesn't work #241530

    Hi!

    The image link is broken. Please post it again. The website is not loading on my end, weird. Let me ask Yigit and the rest of the support team to check this again.

    Best regards,
    Ismael

    in reply to: Can't change 'Frontpage Settings' #241529

    Hey Richard_Byford!

    Can you please give us a link to the website? If I am not mistaken, it is a third party plugin that is causing the issue. Please deactivate all plugins, see if the issue is fixed.

    Cheers!
    Ismael

    in reply to: product slider problem #241528

    Hi!

    Do you mind posting the login details here? We would like to check it. Set it as a private reply.

    Best regards,
    Ismael

    in reply to: Text in block not centered vertically #241526

    Hi!

    Please try this one:

    .avia-section {
    min-height: 60px;
    position: static;
    }

    Cheers!
    Ismael

    in reply to: delete link (no lightbox) from AJAX porfolio image #241524

    Hey!

    Yes, that is possible. Just add this on the child theme’s functions.php:

    /*
     * Register frontend javascripts:
     */
    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' );
    }

    Create a js folder with the avia.js file inside.

    Regards,
    Ismael

    in reply to: Header is screwy since update—help! #241523

    Hi!


    @biklops
    : I checked the website but I don’t see any social icons there. Did you just hide it via CSS or the new header options work?


    @drjill
    : We’re really sorry about that. We’re just trying to improve the users’ overall experience with Enfold by giving you more options like the ones we added for the header options. A lot of users were requesting for css modifications like header height, logo position, social icons position, phone numbers etc because they are not available on the previous header options. Now, you can do all those things without adding any css or changing any code. There will be certain setbacks but we hope that you appreciate Kriesi’s efforts.

    Anyway, you can recopy the header.php file from the parent theme folder and replace the one that you have on your child theme. You can find most of the header codes like logo, menu etc on includes > helper-main-menu.php file.

    Regards,
    Ismael

    in reply to: Background for Alternate Content #241521

    Hey phil!

    Have you tried to recreate the color section? Please give us a link to the website. A screenshot explaining the issue will help.

    Regards,
    Ismael

    in reply to: Youtube HD slider fullscreen #241519

    Hi romano2!

    AFAIK there is no option that you can append on the youtube url to force the video to play hd. You can only set the videos that you uploaded on your account to play as hd.

    Go to YouTube and sign into your account (if you’re not already signed in). Look for the Youtube Settings > Playback > Video playback quality > enable the “Always play HD on fullscreen (when available)”.

    Regards,
    Ismael

    in reply to: Center easyslider caption text, and another question #241518

    Hey ckosheff!

    1.) You can add something like this on Quick CSS to adjust the position of the caption:

    .avia-caption {
    bottom: 40px;
    left: 20%;
    }

    2.) Please edit includes > loop-index.php, replace all of it with this code: http://pastebin.com/cYBSQghy

    Cheers!
    Ismael

    in reply to: ADVERTISING WIDGET #241517

    Hi silviouk!

    You can close the gap between two ad widget using this on Quick CSS or custom.css:

    .avia_partner_widget:last-child {
    margin-top: -20px;
    }

    Cheers!
    Ismael

    Hi!

    That is possible but the tooltip will pop out over and over again. You can add something like this on Quick CSS or custom.css:

    .avia-tooltip {
    margin-top: 80px;
    margin-left: 5px;
    }

    Cheers!
    Ismael

    in reply to: Which config.php file? #241499

    Hi!

    I’m not sure what you mean but Dude said to that the patch has been included on Enfold 2.6.2. All you need to do is download the latest version of the theme on your themeforest account then update the theme via FTP. Watch this video by Devin: http://vimeo.com/channels/aviathemes/67209750

    Best regards,
    Ismael

    in reply to: Cyrillic font problem #241497

    Hi Finlando!

    Please use this instead: I’m not sure why you have duplicated variables for the same font:

    add_filter('avf_google_heading_font', 'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Oranienbaum'] = 'Oranienbaum&subset=latin,cyrillic';
    return $fonts;
    }
    
    add_filter('avf_google_content_font', 'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    
    $fonts['Roboto Condensed'] = 'Roboto Condensed:700,400,300&subset=latin,cyrillic';
    return $fonts;
    }

    Best regards,
    Ismael

    in reply to: Redirect Link Post Format #241493

    Hey!

    The link formatted posts should automatically link to the specified url. Make sure that you added the link on the text editor like this for example: http://kriesi.at

    Regards,
    Ismael

    Hey!

    Sorry, you didn’t mention anything about that. We can only give support for the actual theme.

    Regards,
    Ismael

    Hi themeforesttony!

    Maybe, you can just hide the button using css. What pages do you want the buttons not to show? Regarding the plugin shortcode not working, please contact the plugin author.

    Best regards,
    Ismael

    in reply to: Social Icons On Logo on iPhone #241463

    Hey!

    Please use this on Quick CSS or custom.css:

    @media only screen and (max-width: 767px) {
    .responsive #header .social_bookmarks {
    right: -60px;
    position: absolute;
    }
    
    #top .social_bookmarks li a {
    width: 20px;
    min-height: 20px;
    font-size: 15px;
    }
    
    #top .social_bookmarks li {
    width: 25px;
    }
    
    #top .social_bookmarks li a {
    line-height: 20px;
    }
    }

    Best regards,
    Ismael

Viewing 30 posts - 59,581 through 59,610 (of 67,155 total)