Forum Replies Created

Viewing 30 posts - 53,641 through 53,670 (of 67,499 total)
  • Author
    Posts
  • in reply to: Background Color for Social Media Icons #356237

    Hey a00109943!

    Thank you for using Enfold.

    Please use this on Quick CSS:

    #top #wrap_all .av-social-link-linkedin a {
    color: #419cca;
    }
    
    #top #wrap_all .av-social-link-youtube a {
    color: #a72b1d;
    }

    Regards,
    Ismael

    in reply to: Share Icons on Pages #356236

    Hi Rhoody!

    Thank you for using Enfold.

    You can add this on functions.php:

    add_filter('avf_template_builder_content', 'avia_add_social_toolbar_template_builder', 10, 1);
    function avia_add_social_toolbar_template_builder($content = "")
    {
            $content .= '<div style="height:1px; margin-top:20px;" class="hr"></div>';
    	$content .= avia_social_share_links(array(), false);
    	return $content;
    }

    The code will add the social share section on all pages created with the advance layout builder.

    Best regards,
    Ismael

    in reply to: Shop from Flashlight theme #356234

    Hey!

    Thank you for using Enfold.

    Yes, both theme are using the WooCommerce plugin. It’s not possible to take the style of the Flashlight shop page to Enfold vice versa without major modification. You will need to hire a freelance developer to do this.

    Best regards,
    Ismael

    in reply to: Custom CSS Class in ALB Elements is not working as expected #356231

    Hi Slade!

    Thank you for using Enfold.

    Please target the correct selector:

    .slider-eval-button a.avia-button {
    border-color: rgb(254, 100, 46) !important;
    }

    The purpose of Custom CSS Class is to separate a specific element among other elements. This is disabled by default because everyone who wants to enable it should have at least a little background in html and css. All you need to do is to use the right selectors.

    Regards,
    Ismael

    in reply to: Header CSS Help #356229

    Hi rost11!

    Thank you for using Enfold.

    We have to see the actual website. Please post the url here. Change the font styles on Enfold > Advanced Styling panel. If you have the time, please check these materials:

    https://developer.chrome.com/devtools
    http://getfirebug.com/wiki/index.php/Main_Page

    Cheers!
    Ismael

    in reply to: Video Background is Pixelated #356224

    Hey KDyer87!

    Thank you for using Enfold.

    According to google, YouTube adjusts the quality of your video stream from standard definition (such as 240p or 360p) to high definition (720p or 1080p), based on the speed of your Internet connection (bandwidth). This is why you may notice that the quality of your video changes as you watch videos. If you have a fast Internet connection, you can change your settings to make sure videos always play in HD qualities when they’re available:

    1.) Go to your Settings page > Playback
    2.) Select Always play HD on fullscreen (when available)
    3.) Click the Save button

    It means that you can’t control the video quality when using youtube videos. Please try vimeo videos. Refer to this link: https://kriesi.at/support/topic/video-slider-quality/#post-305211

    Regards,
    Ismael

    in reply to: Ipad menu #356222

    Hey!

    Please remove browser cache then check it again. It does work. Please adjust the code:

    @media only screen and (max-width: 1024px) {
    .responsive .boxed#top, .responsive.html_boxed.html_header_sticky #header {
    width: 100%; }}

    Cheers!
    Ismael

    in reply to: Blogroll: Remove Post Dates from Grid Layout #356221

    Hey majbns80!

    Thank you for using Enfold.

    Please add this on Quick CSS or custom.css to remove the date:

    time.slide-meta-time.updated {
    display: none !important;
    }

    Cheers!
    Ismael

    in reply to: Exclude first post in portfolio grid? #356220

    Hi!

    I’m sorry but blog posts doesn’t have this feature by default. If you want them to open the video on lightbox, edit the post then set the post format to link. Add the url of the video on the text editor. If you’re worried about the excerpt, click Screen Options then enable the Excerpt meta box. Add the excerpt there.

    Regards,
    Ismael

    Hi Chipsybg!

    Thank you for using Enfold.

    You can actually set the fonts on Enfold > General Styling > Fonts panel. As you can see most of the available fonts are from google. Aside from the general styling, you can also alter the look of specific elements like heading tags on Enfold > Advanced Styling panel. If you want to change the font weight, use the Quick CSS field.

    Best regards,
    Ismael

    in reply to: Icon halo hover effect – color/opacity change #356215

    Hey Slade!

    Thank you for using Enfold.

    Can you please give us a link to the actual page with the icon effect? If you’re referring to the sonar effect, try this on Quick CSS:

    @-webkit-keyframes sonarEffect {
    	0% {opacity: 0.3;}
    	40% {opacity: 0.5;box-shadow: 0 0 0 2px rgba(87,81,73,0.1), 0 0 10px 10px #575149, 0 0 0 10px rgba(87,81,73,0.5);}
    	100% {box-shadow: 0 0 0 2px rgba(87,81,73,0.1), 0 0 10px 10px #575149, 0 0 0 10px rgba(87,81,73,0.5);-webkit-transform: scale(1.5);opacity: 0;}
    }
    @-moz-keyframes sonarEffect {
    	0% {opacity: 0.3;}
    	40% {opacity: 0.5;box-shadow: 0 0 0 2px rgba(87,81,73,0.1), 0 0 10px 10px #575149, 0 0 0 10px rgba(87,81,73,0.5);}
    	100% {box-shadow: 0 0 0 2px rgba(87,81,73,0.1), 0 0 10px 10px #575149, 0 0 0 10px rgba(87,81,73,0.5);-moz-transform: scale(1.5);opacity: 0;}
    }
    @keyframes sonarEffect {
    	0% {opacity: 0.3;}
    	40% {opacity: 0.5;box-shadow: 0 0 0 2px rgba(87,81,73,0.1), 0 0 10px 10px #575149, 0 0 0 10px rgba(87,81,73,0.5);}
    	100% {box-shadow: 0 0 0 2px rgba(87,81,73,0.1), 0 0 10px 10px #575149, 0 0 0 10px rgba(87,81,73,0.5);transform: scale(1.5);opacity: 0;}
    }
    
    .av_font_icon.av-icon-style-border .av-icon-char:after {
    	box-shadow: 0 0 0 2px rgba(87,81,73,0.1) !important;
    }

    You have to change the box shadow color.

    Regards,
    Ismael

    in reply to: Enfold menu moves from top to right side #356214

    Hi!

    I’m sorry but the site ( http://presentperfectco.com/solutions) is still using an old version of the theme, 2.4.2. Please download the latest version 3.0.2 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/

    The update might alter some options so you have to adjust them or configure them from scratch. Please make sure that you update the theme every time a new patch is available.

    Regards,
    Ismael

    in reply to: Fill header area with image #356212

    Hi browntodde!

    Thank you for using Enfold.

    After you upload the background image, make sure that you select the Full size version of the thumbnail.

    Cheers!
    Ismael

    in reply to: wordpress update – sliders are not working #356210

    Hi eftekhari!

    Thank you for using Enfold.

    Please refer to these links on how to properly update the theme via Theme Update panel or via FTP:

    http://kriesi.at/documentation/enfold/portfolio-item/update-theme-files-with-ftp/
    http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Regards,
    Ismael

    in reply to: Layer slider resize above 100% – Scaling issue #356175

    Hey!

    Thank you for the link.

    Instead of adding the images as slide background, you can add it as a layer. Set the width and height on the Styles panel to 100%. Make sure that the height of the images that you’re going to use is close or the same with the slider height.

    Regards,
    Ismael

    in reply to: Masonry Layout for Products to Show Add to Cart #356174

    Hey!

    Thank you for using Enfold.

    Unfortunately, you can’t add the add to cart icon on the masonry view without modifying the theme. We really don’t recommend masonry as the shop base page because it lacks the default feature that a standard shop page should have. Please hire a freelance developer to add it or request it on our Feature Requests page as possible features for next theme updates.

    Best regards,
    Ismael

    Hi!

    Thank you for visiting the support forum.

    I answered your other inquiry and noticed that you’re using a very old version of the theme, 2.7.1. I’m afraid we won’t be able to help you unless you find a way to update the theme to version 3.0.4 and WordPress 4.0.1. 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/

    Regards,
    Ismael

    in reply to: Social Icon Issue #356172

    Hey!

    Thank you for the info.

    Blogger is not available as a social icon option by default. How did you add it before? Please use this on functions.php:

    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
    function avia_add_custom_social_icon($icons)
    {
    $icons['Blogger'] = 'blogger';
    return $icons;
    }

    You’ll be able to select Blogger on Enfold > Social Profiles.

    Regards,
    Ismael

    in reply to: Update from 3.0.1 to 3.0.4 not working #356168

    Hey mguertler!

    Thank you for using Enfold.

    Try logging out of the wp dashboard then login again. If it doesn’t work,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/

    Cheers!
    Ismael

    in reply to: Update Enfold from 2.9.2 to 3.0.4 make Fatal error #356163

    Hi gbielawski!

    Thank you for using Enfold.

    Please deactivate all plugins before updating the theme to 3.0.4. Update the theme via FTP. http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Cheers!
    Ismael

    in reply to: Full Width Easy Slider Suddenly Not Appearing #356162

    Hi!

    Thank you for using Enfold.

    I’m sorry but you’re using an old version of the theme, 2.9.2, which is not compatible with WordPress 4.0.1. Please download the latest version 3.0.4 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/

    @GrezegorzDawidko: Please give us a link to your website. After the update, please remove browser and plugin cache then test it again.

    Regards,
    Ismael

    in reply to: Biography in the Blog sidebar #356161

    Hi!

    You can decrease the text widget padding with this:

    .widget_text {
    padding: 10px 0 0 0;
    }

    To change the font size, add the font-size property:

    <h1 style=”color:blue;margin-left:7px;font-size:15px;”>Non perdere le mie news esclusive per gli iscritti</h1>
    

    Regards,
    Ismael

    in reply to: Enfold, Woocommerce, WPML & Multi currency #356159

    Hi!

    Please use this instead:

    #top .cart-collaterals .cart_totals table .wcml_currency_switcher, #top.woocommerce-page .wcml_currency_switcher {
    width: 220px;
    min-width: 0;
    margin: 0;
    }

    Regards,
    Ismael

    Hi!

    Can you please provide a screenshot on where you want the image to be located? I checked the site but I’m not sure which actual image to check.

    Best regards,
    Ismael

    in reply to: Video Size in page #356155

    Hey Maucerichris!

    Thank you for using Enfold.

    You can place the video element inside a column layout to make it smaller. Unfortunately, you can’t define the video size.

    Cheers!
    Ismael

    in reply to: Title don't work on my site after update #356154

    Hi blubb!

    Thank you for using Enfold.

    I’m sorry but you’re using an old version of the theme. Please update WordPress to 4.0.1 then download the latest version of the theme, 3.0.4, 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/

    Best regards,
    Ismael

    in reply to: Layerslider id #356152

    Hi!

    You can add a color section below the fullscreen slider. When you clicked the arrow, it will scroll down to that section.

    Best regards,
    Ismael

    in reply to: Theme update issue #356151

    Hi rogersmedia!

    Thank you for using Enfold.

    We need to see the actual website. Please post the url here. Make sure that you upgraded WordPress to 4.0.1.

    Cheers!
    Ismael

    in reply to: Menu Left + Logo Left #356149

    Hey alvinhy!

    Thank you for using Enfold.

    Please use this on Quick CSS or custom.css:

    .main_menu {
    position: relative;
    left: 100px;
    }

    Best regards,
    Ismael

    in reply to: Paypal Button on the Social Icon bar in Header #356148

    Hey Banfe!

    Thank you for using Enfold.

    Please edit functions.php, find this code on line 16:

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

    Below, add this code:

    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    function avia_add_custom_icon($icons)
    {
    $icons['paypal']	 = array( 'font' =>'fontello', 'icon' => 'ue800');
    return $icons;
    }
    
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
    function avia_add_custom_social_icon($icons)
    {
    $icons['Paypal'] = 'paypal';
    return $icons;
    }

    Locate the paypal icon on fontello.com then upload it using the Iconfont Manager on Enfold > Import/Export panel. Change the icon code (ue800) on this line:

    $icons['paypal']	 = array( 'font' =>'fontello', 'icon' => 'ue800');
    

    You can find the character codes by hovering over the icons when you create elements line icon, iconbox etc:

    Regards,
    Ismael

Viewing 30 posts - 53,641 through 53,670 (of 67,499 total)