Forum Replies Created

Viewing 30 posts - 58,081 through 58,110 (of 67,597 total)
  • Author
    Posts
  • in reply to: Menu Button with an icon #280987

    Hey!

    Thank you for the update.

    Please add the footer menu again. If possible, please post the login details here. We would like to inspect it.

    Best regards,
    Ismael

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

    Hey Gary!

    Thank you for the info.

    From what version did you update the theme? The latest version includes the latest patch of the layer slider plugin. You might need to edit the layer sliders again.

    Cheers!
    Ismael

    Hi!

    Thank you for using the theme!

    Yes, deactivating the advance layout builder on the page will remove all the shortcodes. We haven’t tested the visual composer plugin with the Advance Layout Builder. You may experience incompatibility issues when you install the plugin. Regretfully, we don’t provide support for third party plugin such as VC. Please contact the plugin author.

    Cheers!
    Ismael

    Hey maednurm!

    Thank you for using the theme!

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

    .boxed#top {
    margin-top: 20px;
    }

    Best regards,
    Ismael

    in reply to: Promo Box in IE 8 #280959

    Hey!

    Alright. Please try this css snippet:

    .avia-msie-8 div.av_promobox div h3 a img, .avia-msie div.av_promobox div h3 a img {
    max-height: 155px !important;
    height: 155px !important;
    max-width: 240px  !important;
    width: 240px  !important;
    }

    Remove browser cache then reload the page a few times.

    Cheers!
    Ismael

    Hey PixxAgentur!

    Thank you for using the theme!

    Do you have any redirect scripts or plugins? Please disable them then test the anchor links again on safari.

    Regards,
    Ismael

    in reply to: Cant's import new layerslider #280948

    Hi!

    I’m sorry but the 5.2 version is still not available right now. We’ll immediately include the update once the layer slider author release the stable 5.2 patch of the plugin.

    Cheers!
    Ismael

    in reply to: Sticky Header on standard android 4.3. browser #280944

    Hey!

    Thank you for the update.

    Can you please post the website url here again? I can’t see it on the posts when I reviewed the thread. The solution about decreasing the opacity tells us that on asus stock browser, the header_bg container covers the logo and the menu. Is that correct?

    Cheers!
    Ismael

    in reply to: Slideshow Issue #280940

    Hi blankonblank!

    Thank you for the link.

    It keeps on resizing because the images’ width and height are set to auto. They are adapting to the size of the mobile screen. The wider image looks smaller because it needs to decrease in height in order to keep its proportion. You can add this on Quick CSS or custom.css to define a custom width when viewing on iPhone size screens:

    @media only screen and (max-width: 767px) {
    .avia-slideshow.image_no_stretch li img {
    width: 50%;
    height: auto;
    }
    }

    Cheers!
    Ismael

    in reply to: image grid #280935

    Hi!

    Thank you for the info.

    Please do not change the settings on the Media panel. Edit the page with the gallery and portfolio. On the page with the gallery, edit the Gallery element then look for Gallery Preview Image Size. Select the thumbnail size manually. On the portfolio page, edit the Portfolio Grid element then look for the Portfolio Grid Image Size, choose the second option. Manually select the thumbnail size on Select custom image size setting.

    Cheers!
    Ismael

    in reply to: Enfold Update Error #280932

    Hi!

    Alright. Thank you for the clip.

    I can see the issue on Chrome now. Please try to add this on Quick CSS or custom.css:

    .html_header_top.html_header_sticky #header {
    position: fixed;
    -webkit-transform: translateZ(0);
    }

    Regards,
    Ismael

    in reply to: Correlated products #280930

    Hi!

    Thank you for the access.

    I created a test product then added the Post-Seismic Settlement product item as linked product (Up-Sells) and it shows on the “You might also like” section. Since you’re using WPML, it is under “Ti potrebbe interessare…” section.

    http://www.engsoft.eu/prodotto/test-product/

    Best regards,
    Ismael

    in reply to: Please contribute and translate Enfold #280921

    Hi!


    @mndawood
    : Again, thank you so much for taking the time to translate the theme! We’ll wait for the revision. :)

    Cheers!
    Ismael

    in reply to: Header Logo #280914

    Hey!

    Thank you for using the theme!

    Use the iframe tag in order to add the authentication page. I’m not sure if the form is going to work though. Edit includes > helper-main-menu.php, find this code on line 102:

    echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', $addition, 'strong', true);
    

    Below, add this code:

    <iframe src="http://domussapiens.com.br/sourcelab/auth.php"></iframe>
    

    Add this on Quick CSS or custom.css:

    div#header_main iframe {
    float: right;
    position: relative;
    top: 50px;
    display: block;
    width: 500px;
    }

    Best regards,
    Ismael

    Hey Marcelo!

    Thank you for the info.

    Edit the draw outside the lines image, add a css class selector. Use “draw-question-image” for example, something like this:

    <img class="alignnone size-full wp-image-4032 draw-question-image" src="http://shelliv.bydecosta.com/wp-content/uploads/sv_manifesto_v1.jpg" alt="sv_manifesto_v1" width="697" height="400">
    

    Use media query then apply a minimum height for the image on smaller screens to re-align it:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .draw-question-image {
    min-height: 240px;
    }
    }

    Best regards,
    Ismael

    in reply to: Author Page > Grid > Show Images #280909

    Hey NoahCurran!

    Thank you for using the theme!

    Edit includes > loop-author.php, remove the code and replace it with this: http://pastebin.com/NcGquvUn

    Add this on Quick CSS or custom.css:

    .author .big-preview {
    display: block;
    padding: 20px 0;
    }

    Regards,
    Ismael

    in reply to: Header and Navigation Styling #280901

    Hey!

    Thank you for the update.

    You can add this below:

    .header-scrolled .logo img {
    padding: 20px 0;
    }

    Best regards,
    Ismael

    in reply to: Background #280900

    Hi guiversiani!

    Thank you for using the theme!

    Please provide a screenshot of the layout that you want here. It just won’t work with the stretched layout specially when you’re using the color section element. Create a new page, insert the color section then apply a background to it. Add all contents inside the color section.

    Cheers!
    Ismael

    in reply to: Footer zentrieren #280898

    Hey!

    Please use this:

    #footer section#pages-2 {
    text-align: center;
    }
    
    #footer section#pages-2 .widget_pages ul li {
    display: inline-block;
    margin: 0 10px;
    }

    Best regards,
    Ismael

    in reply to: Fullwidth easy slider borders #280893

    Hi Henk_28250!

    Thank you for using the theme!

    What about retain the top border then increase the top and bottom padding? Something like this on Quick CSS or custom.css:

    div#full_slider_1 {
    padding: 20px 0;
    }

    You can remove the arrows with this:

    div#full_slider_1 div.avia-slideshow-arrows.avia-slideshow-controls {
    display: none;
    }

    Regards,
    Ismael

    in reply to: responsive horizontal layout #280382

    Hi Raffaella!

    Thank you for the info.

    It doesn’t look that way when we check the website. If I am not mistaken, the website is enclosed on a frameset tag before but it’s not anymore. Did you remove it? This is what it looks like on iPhone view:

    Cheers!
    Ismael

    in reply to: Produktkategorie – Ansicht 3spaltig #280381

    Hi Sophieja23!

    Thank you for using the theme.

    Please create new page then use the Advance Layout Builder. Insert the Product Grid element under Plugin Additions panel. You can now add additional elements such as Slider on the shop page.

    Best regards,
    Ismael

    in reply to: Layer Slider Bug after migration #280380

    Hey!

    @CheckMark: Please create another user then post it here as a private reply. We would like to check the layer slider. Is it ok if we deactivate all plugins while working on the site?

    Regards,
    Ismael

    in reply to: Wocommerce design problems #280377

    Hey simonac!

    Thank you for using the theme!

    1.) You can disable the sidebar for single product page by editing the product. Look for Layout > Sidebar Setting. Choose the widget area with no widgets applied. Another thing that you can do is to disable the sidebar on Enfold > Sidebar Layout > Sidebar on Single Post Pages. Choose “no sidebar”.

    2.) The products tabs are still not working. Try to change the product description color with this:

    div#tab-description p {
    color: red;
    }

    3.) Do you prefer the transparent background? If not, you can use this:

    .main_color .inner_product div.avia_cart_buttons {
    opacity: 1;
    }
    
    #top .main_color .avia_cart_buttons .button {
    color: black;
    }

    Cheers!
    Ismael

    in reply to: image grid #280373

    Hey alteregousa!

    Thank you for visiting the support forum!

    First, edit the gallery then look for the Gallery Preview Image Size option. Select the thumbnail size that you want. For the portfolio grid, edit the element then look for Portfolio Grid Image Size. Choose the manual thumbnail selection option.

    Cheers!
    Ismael

    in reply to: Masonry Gallery – 3 Images #280371

    Hey jamie!

    Thank you for using the theme!

    You can try to increase the masonry entry container with this on Quick CSS:

    .av-masonry-entry {
    position: relative;
    width: 33.33%;
    }

    Regards,
    Ismael

    in reply to: Portfolio Order And Advanced Filtering #280369

    Hey!

    Thank you for the update.

    I don’t think there is any sorting plugin that integrates well with the portfolio items without major modification. Regretfully, this task falls beyond the scope of support. You might need to find a plugin or hire a freelance developer to add the feature for you. Please visit Envato Studio or Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.

    Best regards,
    Ismael

    in reply to: Tag/Category listed on Page #280368

    Hey NoahCurran!

    Thank you for using the theme!

    You can enable the Header Title and Breadcrumbs option on Enfold > Header Layout > Header layout panel. This will add a title container on top of the archive page.

    Best regards,
    Ismael

    in reply to: Image under Breadcrumbs #280365

    Hey!

    Thank you for the screenshot.

    You can add this on functions.php:

    add_filter('avf_title_args', 'avf_add_bottom_container', 10, 2);
    function avf_add_bottom_container($args,$id) {
    	if(is_single) {
    		$args['html'] = "<div class='{class} title_container'><div class='container'><{heading} class='main-title entry-title'>{title}</{heading}>{additions}</div></div><div class='below-title-container container_wrap'><div class='container'></div></div>";
    	} 
    	return $args;
    }

    Apply the image as background using the div.below-title-container.container_wrap div.container selector on Quick CSS:

    div.below-title-container.container_wrap div.container {
    background: url('IMAGE URI HERE');
    height: 20px;
    }
    
    div.below-title-container.container_wrap {
    border: none;
    }
    
    .single div.stretch_full.container_wrap {
    border-bottom: 1px solid #e1e1e1;
    }

    Cheers!
    Ismael

    in reply to: Fontello icons not appearing #280361

    Hey harrisinternet!

    Thank you for using the theme!

    Can you please give us an access to the zip file that you get from fontello.com? We’ll test it on our end. We tried to download our own fontello font and they’re working fine, using the shortcodes and the icon element on the advance layout builder.

    Regards,
    Ismael

Viewing 30 posts - 58,081 through 58,110 (of 67,597 total)