Forum Replies Created

Viewing 30 posts - 61,171 through 61,200 (of 67,534 total)
  • Author
    Posts
  • in reply to: Menu below Slider #222238

    Hey emiko356!

    No, that is not simply possible, it will require some customization within the theme. Please hire a freelance developer to modify the theme for you.

    Cheers!
    Ismael

    in reply to: Bigger Logo (non fixed, social, add nav) #222237

    Hey!

    Please remove this line:

    .logo, .logo a, .logo img { max-width: 235px !important; }
    

    Replace it with this:

    .logo, .logo img {
    width: 235px !important;
    max-width: 235px !important;
    }

    Best regards,
    Ismael

    in reply to: A wish: in WC ckeckout comment field below order details #222234

    Hi adrianwackernah!

    I’m not sure if it is possible to move the comment field directly on the theme. Please do ask woocommerce support if that is possible. I’ll ask Dude about this, please wait for his response.

    Cheers!
    Ismael

    in reply to: Sidebar left but alignment to right? #222232

    Hey adrianwackernah!

    Can you please give us a link to the page with the category widget? A screenshot will help.

    Cheers!
    Ismael

    in reply to: CSS in child theme #222227

    Hey Pedro!

    Have you tried adding !important on the css value when adding css modifications on style.css?

    Best regards,
    Ismael

    in reply to: how can I customize the title/breadcrum area? #222226

    Hi!

    I’m sorry but I think I need to ask the rest of the support team. Please wait for Dude’s response.

    Regards,
    Ismael

    in reply to: Isn't responsive for IE11? #222225

    Hey renanmufalo!

    Please edit header.php, find this code on line 38:

    <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
    

    Below, add this code:

    <?php if (strpos($_SERVER['HTTP_USER_AGENT'], 'Trident/7.0; rv:11.0') !== false) { ?>
    	<script>
    	$(function(){
    		$('html').addClass('ie11');
    	});
    	</script>
    <?php } ?>

    Add this on Quick CSS or custom.css:

    .ie11 .container .twelve.units {
    max-width: 1210px !important;
    }

    Cheers!
    Ismael

    in reply to: keep layered slider text same size in responsive #222223

    Hi!

    Please edit the slides then go to each layer’s Attribute panel. Add a unique css class selector for the title and captions. Add “layer-slider-title” for the title and “layer-slider-caption” for the captions. Use media queries on Quick CSS to specify the font size on mobile devices:

    @media only screen and (max-width: 1300px) {
    .layer-slider-caption {
    font-size: 18px !important;
    line-height: 18px !important;
    }
    
    layer-slider-title {
    font-size: 25px !important;
    line-height: 25px !important;
    }
    }

    Regards,
    Ismael

    in reply to: Change Header Text Color #222219

    Hi galland1928!

    You can add this on Quick CSS to make the menu color white:

    .header_color .main_menu ul:first-child > li > a {
    color: white;
    }
    
    .header_color .header_bg {
    background: gray;
    background-color: gray;
    }

    Best regards,
    Ismael

    in reply to: Tesimonial appearance #222213

    Hey!

    You can add this on Quick CSS to restric the height of the partner logo images:

    .avia-logo-element-container img.attachment-no.scaling {
    max-height: 100px;
    min-height: 100px;
    }

    Best regards,
    Ismael

    in reply to: Header color and caps in footer #222206

    Hey dsauce!

    You can change the footer widget title color using this on Quick CSS:

    #footer .widgettitle {
    color: red;
    }

    Cheers!
    Ismael

    in reply to: Blog #222205

    Hey russloveslife!

    Please don’t set anything on Settings > Readings. Create a page then set the homepage on Enfold > Frontpage settings. After you set the frontpage, the option for blog page (And where do you want to display the Blog?) will show. Set the blog page. Please watch this videos to learn more about the theme: http://vimeo.com/channels/aviathemes/

    Best regards,
    Ismael

    in reply to: Embedded Youtube with Https not working #222204

    Hey BWIdaho!

    I’m not so sure about this but please try to install a plugin like http://wordpress.org/plugins/wordpress-https/ to handle the right prefix or protocol of embedded objects.

    Regards,
    Ismael

    in reply to: Placing text on images + alternate hover image #222200

    Hi nick_henri!

    This is not a theme feature. You need to hire a freelance developer or do it manually. Find tutorials on how to swap images on hover like this one. http://kyleschaeffer.com/development/pure-css-image-hover/

    What do you mean by “placing text on images”? Please post a screenshot of what you’re trying to do.

    Best regards,
    Ismael

    in reply to: LayerSlider: only first three slides will show on website #222197

    Hi kayenpublicidad!

    Please give us a link to the website. We would like to inspect it.

    Regards,
    Ismael

    in reply to: Gallery Image captions. #222196

    Hi akamaxbuz!

    Have you tried adding 2 1/4 columns beside the 1/2 column ? Add an Image element on the 1/4 columns then add a Text Block for captions.

    Regards,
    Ismael

    in reply to: Feature Image #222194

    Hey Jox!

    You can add this on Quick CSS or custom.css:

    .big-preview.single-big img {
    max-height: 200px;
    }

    Best regards,
    Ismael

    in reply to: parallax scrolling of background #222192

    Hey pako69!

    You will not see the parallax effect clearly if the height of the color section is small or if you don’t have a content above it. Please set the Background Repeat to “Stretch to fit”.

    Regards,
    Ismael

    in reply to: Header Social Icons #222189

    Hi!

    I’m not sure if I am following the thread correctly but I can see the social icons on the right side of the menu. This is what I see on my end:

    Best regards,
    Ismael

    Hi Geoffdoyle!

    You can add this on custom.css or Quick CSS to change the height of the Fullwidth Easy Slider to 400px:

    .avia-fullwidth-slider {
    height: 400px;
    }

    Regards,
    Ismael

    in reply to: Layerslider don't save #222181

    Hi!

    I’m really not sure why it is not saving. I tried it with different sliders. Can you please deactivate the WordPress SEO ? We’ll check it again after you deactivate the plugin.

    Best regards,
    Ismael

    in reply to: how can I customize the title/breadcrum area? #222177

    Hi nedimhazar!

    Please add this on functions.php:

    add_filter('avf_title_args', 'avf_change_breadcrumb', 10, 2);
    function avf_change_breadcrumb($args,$id) {
    	if($args['breadcrumb'] == true) {
    		$args['breadcrumb'] = false;
    		$args['title'] = '';
    		$args['html'] = "<div class='{class} title_container'><div class='container'>PLACE THE MENU HERE</div></div>";
    	}
    	
    	return $args; 	
    }

    Add the menu inside the container div.

    Best regards,
    Ismael

    in reply to: Reducing the margin size under the logo and menu header #222171

    Hey Animationink!

    You can add this on Quick CSS or custom.css to decrease the header height:

    .social_header #header_main .container, .social_header .main_menu ul:first-child > li a {
    height: 88px;
    line-height: 88px;
    }

    Please give us a link to the actual website so that we can inspect it.

    Cheers!
    Ismael

    in reply to: Please contribute and translate Enfold #222168

    Hey!


    @motylanogha
    : Thank you! :)

    Regards,
    Ismael

    in reply to: Updated LayerSlider #222164

    Hi!

    There is no official date for the layer slider upgrade yet but it should be release on future updates. You can disable the default layerslider plugin if you bought a license. Add this on functions.php:

    add_theme_support( ‘deactivate_layerslider’ );
    

    Install the Layer Slider as a stand alone plugin.

    Cheers!
    Ismael

    in reply to: Problem with Later Slider WP in Enfold theme #222162

    Hi ycsim4016!

    Please give us a link to the actual website. Another user reported this issue but sadly, we didn’t found a fix yet.

    Regards,
    Ismael

    in reply to: Layerslider Version 4.6.5 to 5.0 #222155

    Hey!

    You can disable the default layerslider plugin within the theme then install the LayerSlider as a standalone plugin. Edit functions.php, add this code:

    add_theme_support( 'deactivate_layerslider' );
    

    This will disable the default LayerSlider. Buy the premium LayerSlider plugin then install it.

    Best regards,
    Ismael

    in reply to: Height of FullScreenSlider, No scaling #222150

    Hey!

    Unfortunately, the color section can only support one background image at a time. Please hire a freelance developer to modify the theme for you. You can visit Werkpres for modifications.

    Best regards,
    Ismael

    in reply to: Nested columns? #222144

    Hey Rolf!

    You can insert a column layout shortcode within a Text Block inside a column layout. Generate the column layout shortcode using the shortcode wand.

    Cheers!
    Ismael

    in reply to: Bugy Blog Preview Comment Amount / Number #222142

    Hi!

    I checked all posts on the startpage but I don’t see any comments That is why they are set to “0”.

    Regards,
    Ismael

Viewing 30 posts - 61,171 through 61,200 (of 67,534 total)