Forum Replies Created

Viewing 22 posts - 2,101 through 2,122 (of 2,122 total)
  • Author
    Posts
  • in reply to: New user with customization issues #595802

    Hi edu!

    Thanks for buying the theme and I’ll be more than happy to assist you :)

    I visited your URL and see that you have imported the One Page Portfolio demo and I saw all the background images.
    However, to change the text and images for the you need to go to Pages on your WordPress dashboard. You also can edit the theme features, such as color, text size and so on by going to Enfold on the dashboard.

    Here is information on removing the text “Enfold WordPress Theme by Kriesi” in the footer: Change Footer Text and Link

    I would recommend also check out our the theme Documentation and learn how to change and edit some of the text and images on your website.

    Let me know if you require further assistance.

    Cheers!
    Jordan

    Hey fcp!

    Thanks for getting back in touch.

    Could you please provide a link to your website and temporary login access. You can send the details using the Private Content section in your reply.

    Regards,
    Jordan

    in reply to: Transparent header in eventslist #595781

    Hey EricSmeets!

    Thanks for reaching out to us.

    Could you please provide a link to your site in the Private Content section of your reply, so that we can have a closer look and assist you further?

    Regards,
    Jordan

    Hi koballo!

    Thanks for getting in touch.

    If possible could you provide a username and password for the admin section in the Private Content section, so we can have a closer look at the issue and see what could be causing it.

    Cheers!
    Jordan

    Hi John!

    Thanks for reaching out to us here on the support forum.

    To align the buttons on the slider properly on mobile devices, please add the following CSS in the Quick CSS field in the theme options:

    @media (max-device-width: 500px) {
    .avia-multi-slideshow-button.avia-slideshow-button-2 {
        margin-left: 0px;
     }
    }

    This will remove the margin that is to the left of button 2 on mobile devices.

    Cheers!
    Jordan

    in reply to: Disable mouse hover on icons in the widgets #595699

    Hi!

    You can add the following CSS in the Quick CSS field to stop the calculator icon from being cut off and to remove the animation on the pop up icons.

    /*Adjusts the height so that the calculator icon is not cut off*/
    .av-icon-on-hover .avia_button_icon {
        height: 1.2em !important;
    }
    
    /*Removes the animation from the pop up icons in the widget*/
    .avia_transform .avia_start_delayed_animation.av_font_icon {
        animation: none !important;
    }

    Regards,
    Jordan

    in reply to: On each page one different background image #595682

    Hey!

    Yes the CSS code that was pasted before will help in sizing the image full screen. Please copy and paste the code in the Quick CSS field under the Styling tab of the theme options.

    Let me know if you require further assistance.

    Best regards,
    Jordan

    Hi fcp!

    Thanks for reaching out to us on the support forum.

    You’re on the right track with your CSS code. Try placing the body tag before the page id because HTML tags always precede classes and ids; or you can also just remove body. So you can have either: body.page-id-2519 { /*insert style here*/} or .page-id-2519 {/*insert style here*/}

    Let me know if this helps :)

    Best regards,
    Jordan

    in reply to: enabling breadcrumbs #595283

    Hey stuartcale!

    Thanks for getting back to us with further info.

    Have you solved the issue with the breadcrumbs. I visited your URL and saw that breadcrumbs were there.

    But usually the code for breadcrumbs are added to the header.php file if you wish the breadcrumbs to appear in the header. I would also suggest using a Child theme when editing the theme’s code directly, so that your changes are not lost when updating the theme.

    Cheers!
    Jordan

    in reply to: Event tracking on social icons #595279

    Hi Will!

    Thanks for reaching out to us with this question.

    Yes it is possible to add Google Analytics tracking to the individual social icons. This will take some time and a bit of coding. Here is an article that can assist in implementing this: Track Social Media Events in Google Analytics

    Please use a Child theme when making such extensive changes to the site or these changes will be lost when the theme updates.

    Let me know if you require further assistance.

    Regards,
    Jordan

    in reply to: Home Page Fixes #595275

    Hey jesseaborden!

    Thanks for reaching out to us.

    Glad to hear that you solved the first issue you had. To solve the second issue, please try adding the following CSS in the Quick CSS section:

    @media only screen and (max-width: 767px){
    .flex_column.av_one_half {
        padding: 0px !important;
     }
    }

    Let me know if that helps.

    Cheers!
    Jordan

    in reply to: Responsive display issues #595260

    Hi Dylan!

    Thanks for reaching out to us and sorry for the delayed reply.

    You add the following CSS in the Quick CSS section to correct the image displaying on mobile devices:

    @media screen and (device-width: 500px) and (device-height: 840px) {
    .av-parallax.avia-full-stretch.active-parallax {
        top: 0px;
     }
    }

    Let me know if you require further assistance.

    Cheers!
    Jordan

    in reply to: Header problem #595252

    Hey wtony!

    Thanks for reaching out to us on the support forum.

    Could you please provide the URL to the website in the Private Content section of this forum, so that I can have a closer look at the issue you are having.

    Cheers!
    Jordan

    in reply to: menu css child #595251

    Hey!

    Glad it worked :)

    Let us know if there is anything else you require.

    Regards,
    Jordan

    in reply to: Header Transparency #595249

    Hey PRESIDENTIALPROPERTIES!

    Thanks for reaching out to us.

    I visited your site and the background of the header on scroll has the background pattern.
    Header Background

    To add the background to the top section with the social icons, please add the following CSS to the Quick CSS section:

    #header_meta {
        background: url("http://www.azzivo.com/wp-content/themes/enfold/images/background-images/linen-for-light-background.png");
    }

    Let me know if there is anything else you need.
    Cheers!
    Jordan

    in reply to: Sidebar in 404.php #595247

    Hey hunter74!

    Thanks for reaching out to us here on the support forum.

    If you would like to put back the sidebar on the 404.php page, then here is the original code you need in the 404.php:

    <?php
    global $avia_config;
    	/*
    	 * get_header is a basic wordpress function, used to retrieve the header.php file in your theme directory.
    	 */
    	 get_header();
    	 echo avia_title(array('title' => __('Error 404 - page not found', 'avia_framework')));
    	 
    	 do_action( 'ava_after_main_title' );
    	?>
    
    		<div class='container_wrap container_wrap_first main_color <?php avia_layout_class( 'main' ); ?>'>
    			
    			<?php 
    				do_action('avia_404_extra'); // allows user to hook into 404 page fr extra functionallity. eg: send mail that page is missing, output additional information
    			?>
    			
    			<div class='container'>
    
    				<main class='template-page content <?php avia_layout_class( 'content' ); ?> units' <?php avia_markup_helper(array('context' => 'content'));?>>
    
                        <div class="entry entry-content-wrapper clearfix" id='search-fail'>
                        <?php
                        get_template_part('includes/error404');
                        ?>
                        </div>
    
    				<!--end content-->
    				</main>
    
    				<?php
    				//get the sidebar
    				$avia_config['currently_viewing'] = 'page';
    				get_sidebar();
    				?>
    
    			</div><!--end container-->
    
    		</div><!-- close default .container_wrap element -->
    
    <?php get_footer(); ?>

    Hope that helps and please let me know if there is anything else you need.

    Cheers!
    Jordan

    in reply to: Fit main menu to page width #595245

    Hey!

    Thanks for the image. It made your request a lot clearer.

    To change the width of the menu to the content width of the page, try the following CSS code:

    #avia-menu {
        width: 1010px;
        margin: auto;
    }

    Let me know if you require further assistance.

    Regards,
    Jordan

    in reply to: Removal of the woocommerce sorting #594817

    Hi Jakob40004000!

    Thanks for reaching out to us. I’ll gladly assist you with the WooCommerce filters.

    To remove the default sorting from the product filter, you can follow these instruction from WooCommerce: Removing Default Sorting

    Hope you find this information useful.

    Cheers!
    Jordan

    in reply to: Enfold padding above top menu #594793

    Hi irpocock!

    Thanks for reaching out to us.

    The main menu does not have any top padding but it is the height of the menu that needs to be adjusted to achieve what you want. Add the following CSS code to your custom css:

    .html_header_top.html_header_sticky #top #wrap_all #main {
        padding-top: 90px !important;
    }
    
    strong.logo {
        top: 0px !important;
    }
    
    #top #header_main > .container {
        height: 75px !important;
        line-height: 75px !important;
    }
    

    Hope you this is what you wished to achieved. Let me know if you need further assistance :)

    Cheers!
    Jordan

    Hi suzannewm94!

    Thanks for reaching out to us with that question and I’m glad you love the theme.

    You can try adding the following CSS code to have the main content full up the space rather than being squashed to the left:

    @media only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
    .container .av-content-small.units {
        width: 100%;
     }
    }
    

    You can also add the following if you want to make the sidebar more centered:

    @media only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
    #top #main .sidebar {
        width: 100% !important;
        text-align: -webkit-center;
        text-align: center;
     }
    body#top .main_color .widgettitle {
        text-align: center;
     }
    }
    

    Let me know if there is anything else I can assist you with :)

    Regards,
    Jordan

    in reply to: Problem identifying css classes #594758

    Hi FaM!

    Thanks for your help Guenni007 :)

    You can definitely use any of the Developer Tools in any browser you wish to find the classes for content elements and their style. This will save you a lot of time in editing the style and finding the classes.

    Here is more info on the Dev tools for Firefox and Google Chrome:
    Chrome DevTools
    Firebug

    Let me know if you require further assistance.

    Regards,
    Jordan

    in reply to: Child theme style.css not loading #594750

    Hey tzaroban!

    Thanks for reaching out with your question.

    The style.css stylesheet is only in the theme folder for WordPress to recognize basic theme data like the name and version of the theme. Therefore CSS rules in this file are not be used by the theme which is why the CSS code you put in the style.css file for the child theme does not work. Instead the custom.css file that is located in your themes /css/ folder is used to add your styles. You can create a similar directory in your child theme such as /css/custom.css to add your CSS code and then call that file in the child theme’s function.php file using:

    require_once( get_stylesheet_directory() . '/css/custom.css' );

    Let me know if this helps or if you have any further questions.

    Cheers!
    Jordan

Viewing 22 posts - 2,101 through 2,122 (of 2,122 total)