Forum Replies Created

Viewing 30 posts - 59,251 through 59,280 (of 67,163 total)
  • Author
    Posts
  • in reply to: Adaption Header #245645

    Hi DStoeckl!

    Thank you for using the support forum!

    In order to help you with the problem, we would like to know if you have the latest version of Enfold. The latest release of the theme includes a header option to move the position of the logo to the right, left or center. Regarding the button, we would like to ask for a screenshot of what it is you’re trying to do. We’ll be happy to assist you after we have a better understanding of the situation.

    As always, thank you so much for using the theme!

    Regards,
    Ismael

    in reply to: Header menu text moving #245639

    Hi!

    Glad it worked.

    I checked the site but I don’t see the modifications that we suggested above. Anyway, you can try this code in order to move the the switcher 100px from the left.

    .avia_wpml_language_switch {
    left: 100px;
    }

    You can also use right css property if you want.

    Best regards,
    Ismael

    in reply to: Enfolder Header Customisation #245623

    Hi!

    Thank you for using the support forum and the info.

    You can check for the theme version on Appearance > Themes or check the style.css on Appearance > Editor.

    Regards,
    Ismael

    in reply to: Some questions about Enfold #245620

    Hey tomgraziani!

    Thank you for using the support forum!

    1.) Please add this on Quick CSS or custom.css:

    #text-5 > div > article {
    padding-right: 1px;
    }

    2.) I’m not sure why it’s adding the before pseudo selectors, you can use this to remove the dots:

    #adrotate_widgets-4 .clearfix::before, #adrotate_widgets-4 .flex_column::before {
    content: '';
    }

    3.) Edit header.php, find this code on line 34:

    <link rel="profile" href="http://gmpg.org/xfn/11" />
    

    Do the instruction on the tutorial. After that, edit functions.php then add the code provided on the tutorial at the very bottom.

    Best regards,
    Ismael

    in reply to: menu managemen problem #245603

    Hi!

    Thank you for the login credentials.

    I tested the menu on my end and they are working fine. The menu items are movable and I was able to modify the menu hierarchy etc. This might be an issue with your browser. Please try to remove browser or test it on another browser. I created a test menu here: http://incisivo.it/wp-admin/nav-menus.php?action=edit&menu=1635

    Cheers!
    Ismael

    in reply to: Issues after update – whitespace, etc. #245595

    Hi!

    Thank you for using the support forum!

    The horizontal rule element’s height can be set when you’re using the whitespace option. The default height for the horizontal rule is 50px. You can decrease that value if you want.

    I checked the testimonials but I don’t see the “jump” issue. If I am not mistaken, you’re talking about the testimonials o the home page right below “View All Reviews on Google+” text.

    Nice website. :)

    Best regards,
    Ismael

    in reply to: Icon Images #245591

    Hi teddybaker!

    Thank you for using the support forum.

    I’m sorry but I’m not sure what it is you’re trying to do. If you can give us more information, a screenshot perhaps, that would be great. You should probably place the icon and the text block on a separate column. Add a 2/3 and a 1/3 column layout side by side. Place the Icon shortcode inside the 1/3 column layout and the text block on the 2/3 column.

    Best regards,
    Ismael

    in reply to: Image edit fix messes up icons #245587

    Hey!

    Thank you for using the support forum.

    The purpose of the css code above is to keep the images responsive on all screen sizes. If you remove the code, it will blow up the image proportion and ratio. Another thing that you can do to override the css is to add a custom css class on the image element. If you haven’t done so, please add this right after line 16 inside functions.php:

    add_theme_support('avia_template_builder_custom_css');
    

    This is applicable when you’re using the image element on the avia builder or simply adding the img html code on a text block. Add the Image element then add a custom css class, let’s use awesome-image for example. Add this on Quick CSS or custom.css to override the css auto image size adjustment:

    .awesome-image {
    width: 100px !important;
    height: 100px !important;
    }

    This will resize the image to the dimension specified above. Actually, I’m not really sure if this will help you but if you don’t mind giving us a little more information of what you’re trying to do, we’ll be happy to assist. A list of specific image objects that you want to resize will surely help.

    Regards,
    Ismael

    in reply to: Footer socket #245579

    Hi brich816!

    Thank you for using the theme!

    You can remove the kriesi link on Enfold > Footer > Copyright. Just add the [nolink] tag inside the field. :)

    Best regards,
    Ismael

    in reply to: How to set 1 default background for all components #245578

    Hi!

    Thank you for the feedback.

    1.) It should work even with the centered logo. I’m not sure why it’s not working for you. I thought you want a transparent header? I checked the demo on the link you provided but it’s not using a transparent header. Please post a screenshot of the header that you want, that will greatly help. I also noticed that you’re not using the latest version of the theme, the header transparency won’t work if you’re not using 2.6 or higher. Please download the latest version of the theme from your themeforest account. Update the theme via FTP. Watch this video by Devin: http://vimeo.com/channels/aviathemes/67209750

    2.) If you’re using the portfolio grid element, make sure that the “Sortable?” option is set to Yes.

    Best regards,
    Ismael

    in reply to: Dotted overlays on color section #245569

    Hey!

    I noticed that it might cover some of the sections so you might need to increase the z-index of other color sections or elements if you have any.

    Cheers!
    Ismael

    in reply to: Dotted overlays on color section #245555

    Hi!

    Thank you for correcting me. I’m sorry about that, I must have been tired when I posted that.

    Anyway, you can apply a certain background overlay on a color section but first make sure that you added the theme support for custom css class. Edit functions.php, add this code right after line 16:

    add_theme_support('avia_template_builder_custom_css');
    

    This will give you the option to add a custom css class on any avia elements within the builder. So let’s get started, add a color section with the background image that you want then insert a text block inside the section. The overlay image will be added on the text block. Switch to the text/html editor mode then add this:

    <img alt="" src="http://fc09.deviantart.net/fs71/f/2011/074/3/7/dotted_overlay_texture_by_nobren-d3bqt3w.png" />
    

    Scroll a bit below to add a custom css class, we’re going to use section-overlay-background for example. After that save the options then publish the page. Add this on Quick CSS or custom.css to adjust the image overlay to full width and height covering the entire color section background:

    .section-overlay-background {
      position: fixed; 
      top: -50%; 
      left: -50%; 
      width: 200%; 
      height: 200%;
      z-index: 0;
    }
    
    .section-overlay-background img {
      position: absolute; 
      top: 0; 
      left: 0; 
      right: 0; 
      bottom: 0; 
      margin: auto; 
      min-width: 50%;
      min-height: 50%;
    }

    Reference link is here, look for technique number 2: http://css-tricks.com/perfect-full-page-background-image/

    Cheers!
    Ismael

    in reply to: icons and ipad #245542

    Hey Marssolutions!

    Thank you for using the support forum!

    Most of the animations are disabled when viewing on a mobile device to improve loading speed but certainly not the links. If you don’t mind, please post the link to the actual page with the icon problem. Make sure that you have the latest version of the theme which is Enfold 2.6.2. We’ll be happy to assist you once we have taken a closer look at the issue.

    Regards,
    Ismael

    in reply to: Breadcrumbs not appearing on pages #245539

    Hey controlC!

    Thank you for using the support forum!

    We’re sorry that you’re experiencing the issue. If you don’t mind posting the link to the actual page without the breadcrumbs, that will help. Did you just recently updated the theme? From what version did you update? There are some options that tend to be stuck when you’re using a very old version and updated the theme to the latest release.

    Best regards,
    Ismael

    Hi DStoeckl!

    Thank you for the information!

    Unfortunately, I’m not entirely certain of what you’re trying to accomplish. If you don’t mind adding more information, that would be great. A screenshot of the layout will surely help. You can add another element right after the toggle title using the before and after pseudo selectors. Please try this on Quick CSS or cusotm.css:

    .main_color .toggler.activeTitle:before {
    content: '';
    display: block;
    width: 85%;
    height: 2px;
    background: red;
    position: absolute;
    top: 19px;
    left: 10%;
    }

    The code will add a two pixel high red block beside the toggler title. I hope that helps a bit.

    Best regards,
    Ismael

    in reply to: Need help with Preview Images and Featured Images #245521

    Hey dstellagon!

    Thank you for using the support forum!

    The pages are not loading on my end. I’m not sure why. If I am not mistaken you’re talking about the Slideshow Image Size option which gives you the ability to select the thumbnail size that you’re going to use on the slideshow. The option will not resize the actual slider. The slider is set to inherit the size of its container, try adding it on a column layout and see what happens.

    Since the page is not loading on my end, I will assume that you’re talking about the featured images on the blog overview page. You can remove those using this on Quick CSS or custom.css:

    .page .big-preview {
    display: none !important;
    opacity: 0 !important;
    }

    Regards,
    Ismael

    in reply to: Font colour not changing #245519

    Hi!

    Thank you for the info.

    I checked the website and the fonts are using the color specified on the editor which is black (#000000). There is no possibility that the theme css will override the inline css styling unless there is an !important tag appended beside the css value.

    Regards,
    Ismael

    in reply to: Scrolling not smooth on iOS devises #245518

    Hi!

    Thank you for using the support forum. I can’t test it on actual iOS device but the scrolling on a touch laptop is working properly. Let me ask Josue and Devin to check this. I also noticed that you’re not utilizing page loading optimization. You might want to add a cache and minify plugin to improve loading speed.

    Cheers!
    Ismael

    in reply to: Entypo-Fontello.woff?v=2 404 #245515

    Hi!

    Thank you for the info.

    I’m not sure why the filter is not working. I also tested it on my end but the appended version doesn’t seem to be removed. If you don’t mind, you can remove the actual code on config-templatebuilder > avia-template-builder > php > template-builder.class.php. Find this code on line 45:

    'append'	=> '?v=2',
    

    Regards,
    Ismael

    in reply to: Excerpts and thumbnails in widget blog post #245508

    Hi rikv!

    Thank your for using the support forum!

    Did you use the Enfold Latest News widget? The widget does have an option to display the title and the excerpt. Additionally, the post thumbnails should be automatically added right before the post title if a featured image is set. If you don’t mind providing a link to actual page with the widget, that would be great.

    Best regards,
    Ismael

    in reply to: Problems with icons from fontello #245506

    Hey!

    Thank you for using the support forum.

    Looks like you need to do it using the icons shortcodes. I’m sorry but we don’t usually provide support for third party plugins as stated on support scope policy. Honestly we’re not familiar with different variables at play when using another author’s plugin so it takes time to provide possible solutions. Because of this, any questions you have regarding setup, integration, or troubleshooting any piece of functionality that is not a native theme function will to be redirected to the plugin author or its forum community.

    Thank you for your understanding.

    Regards,
    Ismael

    in reply to: Google Font #245499

    Hey!

    Thank you for posting the information.

    Please delete the code that you added first below functions.php. There is duplicate call for the avia_add_heading_font() function which breaks the theme. That should fix the issue and the Bree Serif font should be available on the heading font selection.

    Regards,
    Ismael

    in reply to: Mega Menu issue #245497

    Hey!

    We’re sorry about that, glad you get it back from running.

    There seems to be a space before the special heading which breaks the shortcode. If you don’t mind posting the login details or check the avia heading shortcode on the menus, that would be great. The alignment of headings are now correct, checked on firefox and chrome.

    Regards,
    Ismael

    in reply to: Mobile view shop and menu issue #245491

    Hey!

    Thank you for using the theme!

    Weird that it is not rendering the same on firefox. Please add this on Quick CSS or custom.css:

    @-moz-document url-prefix() {
    #mobile-advanced #menu-item-2866 > a:before {
    margin-left: -20px;
    }
    }

    Regards,
    Ismael

    in reply to: How can i set Grid layout of images on Home page #245486

    Hi!

    Thank you for the explanation, greatly appreciated.

    In order to update the theme properly, you only need to update it via FTP. Since you change the name of the theme folder, override the actual theme files but leave the style.css from the parent theme folder. Don’t forget to make a backup of the database and your theme files before updating for security purposes. :)

    Best regards,
    Ismael

    in reply to: Add opening contact form to promo box #245485

    Hey Tecrane!

    Thank you for using the support forum!

    The promobox can’t open an inline content through lightbox. If you want a contact form pop, you can utilize the lightbox functionality for inline content. Kindly refer to this link for more info: http://www.no-margin-for-errors.com/projects/prettyPhoto-jquery-lightbox-clone/

    You can also use a plugin such as this one: https://wordpress.org/plugins/popup-contact-form/

    Best regards,
    Ismael

    in reply to: 3D doesn't turn off in transitions #244999

    Hi!

    Thank you for your patience. :)

    I think the issue is not really an issue. I edited the transition for each slide and they are ok now. I was confused at first and I thought I need to disable the 3d transition once. It turns out, you need to modify the transition for each slide.

    Please check here: http://75.103.91.29/

    Best regards,
    Ismael

    in reply to: 3D doesn't turn off in transitions #244995

    Hi!

    Thank you! I’m checking it right now.

    Best regards,
    Ismael

    in reply to: How do I make the my logo larger in the header? #244992

    Hey fixedopsinsight!

    Thank you for using the support forum!

    I’m sorry but we would like to ask you to update the theme to the latest version 2.6.2. This will give you a lot of options for modifying the header area. Please download the latest version of the theme from your themeforest account. Update the theme via FTP. Watch this video by Devin: http://vimeo.com/channels/aviathemes/67209750

    After the update, please play around with the header options then let us know if you still need the css fix. We’ll be happy to assist.

    Cheers!
    Ismael

    Hi!

    Thank you for the info. If you’re talking about the black overlay background when you click on a thumbnail then I can see it on my end properly fading in and out. On what browser and OS are you testing this? I tested mine on Chrome Windows 8 and I think Firefox will function the same. If you want to modify avia.js on the child theme, add this on the child theme’s functions.php:

    /*
     * Register frontend javascripts:
     */
    if(!is_admin())
    {
    	add_action('wp_enqueue_scripts', 'avia_register_child_frontend_scripts', 100);
    }
    
    function avia_register_child_frontend_scripts()
    {
    	$child_theme_url = get_stylesheet_directory_uri();
    
    	//register js
    	wp_register_script( 'avia-default-child', $child_theme_url.'/js/avia.js', array('jquery'), 1, false );
    	wp_enqueue_script( 'avia-default-child' );
    }

    Create a js folder with avia.js file on it. I hope that helps.

    Best regards,
    Ismael

Viewing 30 posts - 59,251 through 59,280 (of 67,163 total)