Forum Replies Created

Viewing 30 posts - 58,111 through 58,140 (of 67,597 total)
  • Author
    Posts
  • in reply to: Logo Left, Menu below right #280359

    Hey harrisinternet!

    Thank you for visiting the support forum!

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

    .html_header_top.html_bottom_nav_header .main_menu>div, .html_header_top.html_bottom_nav_header .main_menu ul:first-child {
    width: auto;
    float: right;
    }

    Best regards,
    Ismael

    Hi!

    Glad it worked. If you have any questions, let us know. :)

    Regards,
    Ismael

    in reply to: link in header background image #280356

    Hi Mudfish488!

    Thank you for using the theme!

    I’m sorry but there is no option to put a link on the header and you may need to modify the theme files in order to do it. Are you trying to make the whole header a link? If you can give us to the actual website, we would like to check it. We might be able to find a way to create another link element on the header.

    Cheers!
    Ismael

    in reply to: Overset text in Next Post button issue #280355

    Hey!

    Thank you for the update.

    I’m sorry but there are no documentation about css. The support team handles basic custom modifications of the theme like the one you ask. In case you have any questions, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)

    Regards,
    Ismael

    Hey!

    Thank you for the update.


    @irfan_arif
    : Thank you for helping out! :)


    @frankyfranky
    : Yes, you’re correct. You can’t use the advance layout builder inside the panel options of the avia elements such as tabs. You need to generate the shortcode on another page then paste it inside the tab content.

    Best regards,
    Ismael

    in reply to: Pixelated logo #280353

    Hi!

    Thank you for the update.

    The logo is quite too large. Please resize it down to a fourth of the overall size then upload it again.

    Regards,
    Ismael

    in reply to: Overset text in Next Post button issue #280007

    Hey irfan_arif!

    Thank you for using the theme.

    You can decrease the font-size and line-height of the avia_post_nav title with this on Quick CSS:

    .avia-post-nav .entry-info span {
    font-size: 10px;
    line-height: 1.2em;
    }

    Best regards,
    Ismael

    Hey!

    Thank you for using the theme!

    Please use this to resize the custom content that you added then fix the menu the header resize:

    .header-scrolled #header_main_alternate {
    z-index: 10;
    }
    
    .header-scrolled div.custom_content img {
    height: 79px;
    }

    Cheers!
    Ismael

    in reply to: Layer Slider Bug after migration #279997

    Hey Tybo576!

    Thank you for visiting the support forum!

    Please post the website url here. We would like to check it. Make sure that you transfer the website using the WP MigrateDB or WP MigrateDB PRO plugin. Related question, what is the php version of your installation?

    Best regards,
    Ismael

    in reply to: Social media toolbar position #279990

    Hi amiraliz!

    Thank you for visiting the support forum.

    Are you using the advance layout builder for your portfolio items? If yes, please use this:

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

    Cheers!
    Ismael

    in reply to: IMAGE HOVER – BLACK AND WHITE TO COLOUR #279978

    Hey!

    Thank you for using the theme!

    Please add this on Quick CSS or custom.css instead:

    div.avia-image-container div a img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    }
    
    div.avia-image-container:hover div a img {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    }

    Regards,
    Ismael

    in reply to: Masonry Gallery Problem #279976

    Hi dominic!

    First of all, nice set of photographs. :)

    I can’t seem to reproduce the issue on my end by resizing the Chrome browser. Please download the latest version from your 2.8.1 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: Remove categories in post #279973

    Hi!


    @GoodGame
    : Please download the latest version 2.8.1 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: Homepage #279972

    Hi Karic!

    Thank you for visiting the support forum!

    That is a custom module created by Kriesi for the kriesi.at site. I’ll ask him to check this thread. Please wait for his response.

    Regards,
    Ismael

    in reply to: How to modify post summaries? #279970

    Hi GoodGame!

    Thank you for using the theme!

    You can use the <!–more–> tag or use the Excerpt metabox to configure the archive excerpt. If you don’t want to do that, edit archive.php, find this code on line 184:

    echo $content;
    

    Replace it with this:

    if(!is_archive()){
                echo $content;
    			} else {
    			$excerpt = get_the_post_thumbnail( get_the_ID(), "large"); get_the_excerpt();
    			$excerpt .=  get_the_excerpt();
    			echo $excerpt.'<a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span></a>';
    			}

    Cheers!
    Ismael

    in reply to: Adding A New Slider Plugin #279849

    Hey!

    Thank you for visiting the support forum!

    You can deactivate the default layer slider within the theme by adding this on functions.php:

    add_theme_support('deactivate_layerslider')
    

    However, we won’t be able to provide any support for third party plugins such as Master Slider. You can try the revolution slider which is supported by the theme and has a built in toolbar on the advance layout builder.

    Best regards,
    Ismael

    in reply to: Footer zentrieren #279839

    Hey crevlon!

    Thank you for visiting the support forum!

    How many widget columns do you have on the footer? If possible, please post a screenshot on how you want the footer to look like.

    Best regards,
    Ismael

    in reply to: Remove Layover #279838

    Hi scottsmeester!

    Thank you for using the theme.

    Please add this on Quick CSS or custom.css to disable the image overlay:

    .main_color .small-preview:hover {
    background: transparent;
    }
    
    .avia_transform a:hover .image-overlay {
    display: none !important;
    }

    Best regards,
    Ismael

    in reply to: Width of menu #279831

    Hey!

    Thank you for using the theme.

    I’m sorry but what you’re trying to do with the menu width is not possible without modifying the theme files. You need to create a script that dynamically calculate the width of the menu container and apply the correct padding on the menu items in response to the calculated width. That task is beyond the scope of support however you can use the suggested code above to increase the left and right padding of the menu items then use media queries to adjust it smaller screens.

    Regarding the mega menu, did you add any css modifications for it? 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/

    Best regards,
    Ismael

    in reply to: Symbolleiste innerhalb der Beiträge verschwunden #279828

    Hi crevlon!

    Thank you for visiting the support forum!

    Click the Toolbar Toggle icon right beside the shortcode wand.

    Cheers!
    Ismael

    in reply to: Mobile visualisation responsive #279827

    Hey smorrone!

    Thank you for using the theme!

    Do you want to move the main container upwards to maintain the transparent effect? You can add this on Quick CSS or custom.css:

    @media only screen and (max-width: 767px) {
    .responsive #main {
    padding-top: 0 !important;
    margin-top: -82px;
    }
    }

    Regards,
    Ismael

    in reply to: Remove categories in post #279823

    Hey smorrone!

    Thank you for using the theme.

    Please go to Enfold > Blog Layout > Blog meta elements. Disable the Blog Post Category option.

    Best regards,
    Ismael

    Hey!

    Thank you for the update.

    Please set the header behavior again to Shrinking Header or Squeeze as you put it. We need to inspect it. The issue might be fix with css z-index property.

    Cheers!
    Ismael

    in reply to: removing 'title' from Enfold Advertising Area Widget #279812

    Hi!

    Thank you for the update.

    You can remove the padding between two enfold advertising area widget with this on Quick CSS or custom.css:

    #top .avia_partner_widget {
    padding: 0;
    }

    Regards,
    Ismael

    Hey!

    Thank you for the update.

    I checked the page (http://www.traxiongroup.com/about/) again on Chrome and the icons are working now. Again, we don’t see the chinese characters on IE9.

    Cheers!
    Ismael

    in reply to: Advance LayerSlider #279808

    Hey!

    Thank you for the update.

    I’m not sure why the Master Slider Plugin is not working on the site. Yes, maybe they are in conflict with one another. Note that we don’t provide support for third party plugins as stated on our support policy. Please contact the master slider plugin author for more info.

    Best regards,
    Ismael

    in reply to: Enfold not responsive #279807

    Hi!

    Thank you for using the theme.

    The whole website is inside a frameset tag. Did you add a plugin in order to do this? It fails to load the mobile menu because of this.

    Best regards,
    Ismael

    Hey Vicken!

    Thank you for visiting the support forum!

    I tried to resize the browser but I don’t see the issue that you describe on the layer slider. It looks the same. If possible, please provide a screenshot of the issue.

    Best regards,
    Ismael

    Hi!

    Thank you for the update.

    If you want the search text next to the magnifying glass. Just remove the suggested codes above then add this on Quick CSS:

    #menu-item-search [data-av_icon]:before {
    float: left;
    margin-right: 10px;
    }
    
    #top .avia_hidden_link_text {
    display: block;
    float: left;
    }

    Regards,
    Ismael

    in reply to: Woocommerce restrict access #279786

    Hi agenciam!

    Thank you for using the theme.

    You can set the page to Private or use membership plugins. http://wordpress.org/plugins/search.php?q=membership

    Try the s2member plugin.

    Best regards,
    Ismael

Viewing 30 posts - 58,111 through 58,140 (of 67,597 total)