Forum Replies Created

Viewing 30 posts - 59,401 through 59,430 (of 67,155 total)
  • Author
    Posts
  • in reply to: Slider Layer transition not working #243722

    Hi Rastafaren!

    Thank you for using the theme!

    Have you tried the layer slider? You can fully control where and when you want a certain layer to pop out. Watch this video to get started: http://www.youtube.com/watch?v=ZY9SxVyugx4

    Best regards,
    Ismael

    in reply to: Menu Rollover Color Block #243720

    Hey andypeck!

    You can start with this on Quick CSS or custom.css:

    .main_menu ul:first-child > li.current-menu-item, .main_menu ul:first-child > li:hover {
    background: green;
    }
    
    .main_menu ul:first-child > li {
    line-height: 60px;
    height: 60px;
    }
    
    .main_menu ul:first-child > li a {
    height: 60px;
    line-height: 60px;
    }
    
    #header_main > div > nav > div {
    top: 20px;
    position: relative;
    }
    

    The code might still need a lot of polishing but it is a start.

    Best regards,
    Ismael

    in reply to: Infographics in Enfold #243717

    Hey andypeck!

    Thank you for the question. Unfortunately, this is not available within the theme yet but we have noted this request in our list of potential improvements for the theme. You can vote or post the feature on this section: https://kriesi.at/support/enfold-feature-requests/

    For now, you might need to find a plugin or hire a freelance developer to add the feature for you. Please do visit Werkpress for further customization. If you have any further questions about the theme, we are more than happy to provide you with assistance on these inquiries.

    Maybe this plugin will help: http://wordpress.org/plugins/infographic-embedder/

    Best regards,
    Ismael

    in reply to: Secondary layer of category sorting on a portfolio page #243708

    Hey wieslander!

    Thank you for the question. Unfortunately, this is beyond the scope of support and is not a theme related issue. You might need to find a plugin or hire a freelance developer to add the feature for you. Please do visit Werkpress for further customization. If you have any further questions about the theme, we are more than happy to provide you with assistance on these inquiries.

    Regards,
    Ismael

    in reply to: Icons behavior #243707

    Hey Emmanuelppp!

    1.) If you want to remove the animation effect for the icon, edit config-templatebuilder > avia-shortcodes > icon.php. Find this code:

    $output = '<span class="'.$shortcodename.' avia_animate_when_visible av-icon-style-'.$style.' '.$custom_class.' avia-icon-pos-'.$position.' " style="'.$color.'">'.$display_char.$caption.'</span>';
    

    Replace it with:

     $output = '<span class="'.$shortcodename.' av-icon-style-'.$style.' '.$custom_class.' avia-icon-pos-'.$position.' " style="'.$color.'">'.$display_char.$caption.'</span>';
    

    2.) I’m sorry but it will require a bit of modifications. Please look for any reference regarding css animations and transformation.

    3.) Just edit the icon element then choose the Icon Style with border. The sonar effect will be applied on icons with link, specify the link under “Title Link?” option.

    Regards,
    Ismael

    Hi Frostholm!

    1.) Create posts then set them to “Link” post format. Add the url of the category page. Use these posts for the post slider.

    2.) Please add this on Quick CSS to maintain the alignment of the gallery thumbnails:

    .avia-gallery-thumb a {
    width: 20%;
    height: 150px;
    max-height: 150px;
    min-height: 150px;
    }
    
    .avia-gallery-thumb a img {
    height: 150px;
    max-height: 150px;
    min-height: 150px;
    }

    Regards,
    Ismael

    in reply to: 1/3 team member in tab #243700

    Hey!

    Instead of <br> tag, please place something like this after each icon shortcode:

    <div class="icon-gap"></div>
    

    Add this on Quick CSS:

    .icon-gap {
    display: block;
    clear: both:
    height: 15px;
    }

    This should create an invisible space right after the icons. I’m not sure why the <br> tag is not working, we’ll get back to you on that. For the meantime please try the suggestion above.

    Cheers!
    Ismael

    in reply to: Portfolio grid sorting doesn't appears #243698

    Hey!

    Thank you for using the theme. I checked the website but it takes me to the page saying “Website not authorized on CDN”. Unfortunately at this time I am not entirely certain what it is you would like to accomplish based on the information given in your post. If you wouldn’t mind providing us with a little more clarification on what it is you’re wanting to do (a screenshot or something), we’ll be happy to provide you with a response once we have a better understanding of the situation.

    Cheers!
    Ismael

    in reply to: Easy Slider image size and Screen resolution #243692

    Hi!

    1.) The “Slide Image Size” option will not re-size the actual slider. This option is the selection of thumbnail sizes that you want to use for the slider. Selecting larger images will give you crispier and better image quality. The slider will inherit the size of the container so if you place it on a one third column, it will have the same size as the column plus minus padding, margins etc.

    2.) Basically, all you need to do is upload large images something like 1900px in width. The theme will automatically trim it down into smaller thumbnails. You can find the thumbnail sizes on functions.php, you can adjust those if you want.

    $avia_config['imgSize']['widget'] 			 	= array('width'=>36,  'height'=>36);						// small preview pics eg sidebar news
    $avia_config['imgSize']['square'] 		 	    = array('width'=>180, 'height'=>180);		                 // small image for blogs
    $avia_config['imgSize']['featured'] 		 	= array('width'=>1500, 'height'=>430 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['featured_large'] 		= array('width'=>1500, 'height'=>630 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['extra_large'] 		 	= array('width'=>1500, 'height'=>1500 , 'crop' => false);	// images for fullscrren slider
    $avia_config['imgSize']['portfolio'] 		 	= array('width'=>495, 'height'=>400 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['portfolio_small'] 		= array('width'=>260, 'height'=>185 );						// images for portfolio 4 columns
    $avia_config['imgSize']['gallery'] 		 		= array('width'=>710, 'height'=>575 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['masonry'] 		 		= array('width'=>705, 'height'=>705 , 'crop' => false);		// images for fullscreen masonry
    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>270);		                 // big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 );						// images for fullsize pages and fullsize slider

    Regenerate the thumbnails using this plugin after: http://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Ismael

    in reply to: move comments to end of posts #243360

    Hey!

    Create an includes folder on the child theme directory then copy the loop-index.php file. Make the changes above.

    Cheers!
    Ismael

    in reply to: Image uploading time #243358

    Hi!

    It only takes less than 3 seconds to crop or resize a 50kb image on my end. It really depends on the internet connection and server.

    Best regards,
    Ismael

    in reply to: Tables are not responsive #243356

    Hey hrskills!

    This is an old issue with the table and we haven’t found a fix yet. You can remove the mobile device media query to avoid the wrong table stack. Edit css > shortcodes.css, find this code on line 1251:

    @media only screen and (max-width: 767px)
    {
    	.responsive div .avia_responsive_table .avia-data-table table,
        .responsive div .avia_responsive_table .avia-data-table tbody,
        .responsive div .avia_responsive_table .avia-data-table tr,
        .responsive div .avia_responsive_table .avia-data-table td,
        .responsive div .avia_responsive_table .avia-data-table th{display:block; border-top:none; border-right:none; border-left:none; text-align: center;}
        .responsive .avia_responsive_table .avia-data-table{border-style:solid; border-width: 1px;}
        .responsive .avia_responsive_table .avia-data-table .avia-pricing-row .avia-desc-col{text-align: center;}
        .responsive .avia_responsive_table .avia-data-table .avia-button-row, .responsive .avia_responsive_table .avia-data-table tr:first-child th{display:none;}
        .responsive .avia_responsive_table .avia-data-table td:before {
    	display:block;
    	font-style: italic; font-size: 11px;
    	}
    
    	.responsive .avia_responsive_table .avia-data-table td {
    		position: relative;
    	}
    
        .responsive .avia_scrollable_table {
            width: 100%;
            overflow-x: scroll;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
            -ms-overflow-style: -ms-autohiding-scrollbar;
        }
    
        .responsive .avia_scrollable_table .avia-data-table > thead > tr > th,
        .responsive .avia_scrollable_table .avia-data-table > tbody > tr > th,
        .responsive .avia_scrollable_table .avia-data-table > tfoot > tr > th,
        .responsive .avia_scrollable_table .avia-data-table > thead > tr > td,
        .responsive .avia_scrollable_table .avia-data-table > tbody > tr > td,
        .responsive .avia_scrollable_table .avia-data-table > tfoot > tr > td {
            white-space: nowrap;
        }
    }

    Remove the code. We might need to adjust the table width. Please get back to us after you removed it.

    Best regards,
    Ismael

    in reply to: icon list order #243354

    Hi pantanta!

    You can manually sort the position on the icon list by clicking the double edge arrow and dragging them to the position that you want.

    Best regards,
    Ismael

    in reply to: Colour Section Transparent #243352

    Hi Mark!

    Can you please give us a link to the website? Did you apply a background image on the whole site? Otherwise, the color section’s transparency will only show the background of the html container.

    Cheers!
    Ismael

    in reply to: Adjust line height of element #243351

    Hi!

    Please use this on Quick CSS:

    a.gplus-profile {
    position: relative !important;
    top: -25px !important;
    }
    
    .g-follow-wrapper {
    position: relative !important;
    left: -90px !important;
    }

    Best regards,
    Ismael

    in reply to: Limit the number of Tags in the widget #243347

    Hey!

    Use this plugin to customize the widget tag cloud: http://wordpress.org/plugins/configurable-tag-cloud-widget/

    Regards,
    Ismael

    in reply to: Section Visibility and Background image responsiveness #243342

    Hey!

    You can do the same thing with the fullscreen slider. Edit the page then enable the Header transparency on the layout option, insert the Fullscreen Slider. Add this on Quick CSS to keep the header transparent on mobile devices:

    @media only screen and (max-width: 767px) {
    .responsive #top #header {
    position: fixed;
    }
    
    #header_meta {
    display: none;
    }
    }

    Try to set the background image to “Stretch to fit”. This will apply the background-size: cover; property on the background image.

    Best regards,
    Ismael

    in reply to: open external link in lightbox #243338

    Hi!

    Refer to this link: http://www.ehow.com/how_10026538_to-lightbox-display-webpage.html

    Best regards,
    Ismael

    in reply to: Logo incompatibility issue with IE8 #243333

    Hey abedia!

    I’m sorry but IE8 doesn’t recognize media queries. You might need to find another way to show a small logo when viewing on smaller screens. Please hire a freelance developer to modify it for you. or further customization, please visit Werkpress.

    Regards,
    Ismael

    in reply to: Blog Post as List #243331

    Hi!

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

    .small-preview {
    width: 150px;
    height: 150px;
    line-height: 150px;
    left: -30px;
    }

    Adjust the values if you want.

    Regards,
    Ismael

    in reply to: buttons: if link is put manually, created link is wrong #243325

    Hey!

    Can you please give us a link to the website? Try to increase the wordpress php memory limit to at least 128M. Refer to this link: http://dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Regards,
    Ismael

    in reply to: Elements dissapear! #243322

    Hi!

    I can recreate the issue on my end. I reported the problem to Kriesi. Please wait for his response.

    Best regards,
    Ismael

    Hi!

    I checked the website on both language and the language switcher sits on the right of the top bar next to the top menu. I think it is fixed now. Remove browser cache then reload the page a few times.

    Regards,
    Ismael

    in reply to: Posts not displaying after woocommerce products grid #243318

    Hi!

    Two other users reported the issue with the same plugin. Unfortunately, we don’t support third party plugins. Please contact the plugin author.

    Best regards,
    Ismael

    Hi ttem!

    Please try a different minify plugin like this: http://wordpress.org/plugins/bwp-minify/

    Best regards,
    Ismael

    in reply to: Title Bar/Container – Not Showing #243315

    Hi!

    Please give us a link to the website. Do you mind posting the login details? Set it as a private reply.

    Cheers!
    Ismael

    in reply to: Customize iconbox border color #243166

    Hey!

    You can use this instead:

    .iconbox_top .iconbox_content {
    box-shadow: none;
    border: 1px solid #FF00B3;
    }

    Regards,
    Ismael

    Hey!

    Please give us a link to the actual website. We really need to see it live. Did you use any special plugins for the comment area? Another user reported the same issue with the small preview image but it has been fix on the latest update of Enfold.

    Regards,
    Ismael

    in reply to: Update unconfigures font and images #243161

    Hey Jorge Oscar!

    Thank you for using the theme!

    Can you please be specific? A link to the website and screenshot of the issue will help.

    Regards,
    Ismael

    in reply to: Elements dissapear! #243160

    Hi Pedro!

    Please post the link of the actual website, the url on the screenshot is not clear. We need to inspect it.

    Regards,
    Ismael

Viewing 30 posts - 59,401 through 59,430 (of 67,155 total)