Forum Replies Created

Viewing 30 posts - 3,901 through 3,930 (of 10,428 total)
  • Author
    Posts
  • in reply to: External control of accordion element #739415

    Hey jgarciamel,

    This is an interesting and interactive way to display the info. Unfortunately it would require quite some time and customization of the theme to achieve this, so I am sorry to tell you that this is not covered by our support. However if its really important for you to get this done, you can always hire a freelancer to do the job for you :)

    Best regards,
    Vinay

    in reply to: Portfolio grid default category #739413

    Hi,

    Try this code below instead this will select the first category of the portfolio filter if you like to change it increase the eq(x) value in line jQuery(‘.inner_sort_button:eq(1)’).click();

    function select_portfolio_filter(){
    ?>
    <script>
    jQuery( window ).load(function() {
      jQuery('.inner_sort_button:eq(1)').click();
    });
    </script>
    <?php
    }
    add_action('wp_head', 'select_portfolio_filter');

    If you still have any loading issue Would you mind providing a precise link to your site, showing the elements in question? We need to be able to inspect them in order to help :)

    Best regards,
    Vinay

    in reply to: Hover on linked Images #739411

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    a.avia_image {
        pointer-events:none;
    }
    

    Best regards,
    Vinay

    in reply to: Disable Menu & Style Header #739389

    Hey sjahan,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    @media only screen and (max-width: 767px) {
    #top #header_main > .container .main_menu ul:first-child > li > a{
        height: 50px!important;
        line-height: 50px!important;
    }}
    

    Best regards,
    Vinay

    Hey artisforever,

    To hide the mobile menu use the below css

    
    #advanced_menu_toggle {
    display:none!important;
    }

    To add the search bar in mobile header create a header widget area http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/

    Drop a text box in the header widget area and add the below text in it.

    [avia_search]
    

    Best regards,
    Vinay

    • This reply was modified 9 years ago by Vinay.
    in reply to: Add 'Order by' option to avia blog post grid element #739345

    Hey ttem,

    To add the sort option to the blog post elements please refer to our documentation here http://kriesi.at/documentation/enfold/how-to-add-an-orderorderby-option-to-the-blogpost-sliderportfoliomasonry-grid-element/

    Best regards,
    Vinay

    in reply to: changing the page width with a sidebar #739344

    Hey tivo_designs,

    The below code will make the container width 100% wide only on single product pages which will give enough room for the content please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .responsive .single-product .container {
        max-width: 100%!important;
    }
    

    Best regards,
    Vinay

    in reply to: Removing Image Overlay and Icon #739343

    Hey tivo_designs,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    #top .all_colors .image-overlay {
        background-color: transparent!important;
    }
    

    Best regards,
    Vinay

    in reply to: Footer widgets and columns on tablet views #739341

    Hey Julie,

    Please enable custom css class names for ALB element http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Give a custom class name to the columns you like to change and use the same css that is working currently for you for av_one-third

    Let us know if you have any questions :)

    Best regards,
    Vinay

    in reply to: Search Box realtime search results background #739339

    Hey screege,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    #top #searchform .ajax_search_response {
        background: #999!important;
    }
    

    Best regards,
    Vinay

    Hey Emma,

    Thank you for the kind words and providing the screenshot :)

    Posting all the css will not help much tho Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    @media only screen and (max-width: 767px) {
    .responsive #top #header .container {
        width: 100%!important;
        max-width: 100%!important;
        padding-right: 20px!important;    
    }}
    

    Best regards,
    Vinay

    in reply to: Image sizing in colour blocks #739335

    Hey kenwcmg,
    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .avia-image-container-inner, .avia-image {
    width:100%;
    }
    

    Best regards,
    Vinay

    in reply to: Change the sidebar and menu for mobile devices #739334

    Hey Bearded,

    To center the menu items please use the below css in Quick CSS section

    .html_header_sidebar #header .av-main-nav {
        text-align: center;
    }

    To add the search icon and wishlist you need to edit this code here and add to functions.php file http://pastebin.com/raw/W2yZtJu9

    Try adding the shortcode for search and wishlist in the line

     jQuery('#header_main').prepend( "<div class='banner-top'> </div>" );

    Best regards,
    Vinay

    in reply to: Lightbox Question #739308

    Hey markgibbons243,

    Would you mind providing a precise link to your site, showing the elements in question? We need to be able to inspect them in order to help :)

    Best regards,
    Vinay

    in reply to: Enfold theme edit page seems corrupt #739307

    Hi,

    I understand you already tried to fix the plugin conflict but when i view console in the enfold options page there seem to be a conflict with jetpack or another plugin.

    To find which plugin is causing the conflict please follow these steps:

    1. Go to your plugins page > Deactivate all active Plugins
    2. Update WordPress and Enfold to latest version if you have not.
    3. Make sure all the plugins are updated.
    4. If the problem does not persist when plugins are turned off, activate one plugin at a time and refresh until you find the plugin in conflict.

    We await the results of your plugin compatibility test.

    Thanks for your cooperation :)

    You should update the URL in the code yigit provided I copied your logo link from enfold page and pasted it in the functions.php but the logo URL is not valid. Please update the correct link to the logo image and it should work.

    Best regards,
    Vinay

    in reply to: Flags in header on frontpage only #739306

    Hi,

    I checked your site but could not see that the flags are in the header so I could inspect and provide you with accurate CSS code for it. However please try remove the left:50% value and add to right:20px

    Let us know if this works if not please get back to us with a precise link where we can inspect the element in question.

    Best regards,
    Vinay

    in reply to: Woocommerce CSS control of A links #739305

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .woocommerce-LoopProduct-link:hover h3 {
    	color:#ffee38!important;
    }
    

    Best regards,
    Vinay

    in reply to: Fixed size structure for display tv screen #739304

    Hi,

    Please use the grid row section to achieve the layout you are looking for.

    This will create default margins and padding to remove the gaps get in touch with us with a precise link to the page where we can inspect the elements in question.

    Best regards,
    Vinay

    in reply to: Saving didn't work #739277

    Hey Kevin,

    Defining a higher memory limit in wordpress and if possible increasing the memory on the hosting server should resolve this issue.

    To increase the wordpress memory limit please access wp-config.php file and add the below line

    define('WP_MEMORY_LIMIT', '256M');
    

    For a detailed explaination please check this link http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
    and you can contact your service provider to increase the memory limit.

    Let us know if you have any questions :)

    Best regards,
    Vinay

    in reply to: Offer on website for excel courses #739276

    Hey Magnus Persson,

    Thank you for contacting us :) I’m not sure I understood you correctly but I’m assuming you need us to design the site for you?

    Unfortunately we do not provide customisation service as it would require quite some time and customization of the theme to achieve, so I am sorry to tell you that this is not covered by our support. However if its really important for you to get this done, you can always hire a freelancer to do the job for you :)

    Best regards,
    Vinay

    in reply to: Customize theme #739273

    Hey Osama,

    We are happy to help you with simple customisations however to customise the whole theme would require quite some time and customization of the theme to achieve this, so I am sorry to tell you that this is not covered by our support. However if its really important for you to get this done, you can always hire a freelancer to do the job for you :)

    Best regards,
    Vinay

    • This reply was modified 9 years ago by Vinay.
    in reply to: google tag manager #739272

    Hey JNAD,

    Please insert them in Enfold > Google Services > Google Analytics Tracking Code

    you should not have any issue unless there is a conflict with a plugin or custom code. Should you have any such issue we are happy to help!

    Best regards,
    Vinay

    in reply to: Submenu items in mobile menu collapsed #739271

    Hi,

    Please copy the css code to quick css and js code to functions.php file from here http://pastebin.com/raw/ncACWHws

    Best regards,
    Vinay

    in reply to: Personalised Buttons #739270

    Hey Epic,

    After inserting the button element it’s alignment or position can be changed from the button element edit options > Button Position > center

    Let us know if you have any questions.

    Best regards,
    Vinay

    in reply to: meet the team mailto link? #739265

    Hi,

    Glad this is sorted!
    To know more about enfold features please check – http://kriesi.at/documentation/enfold/
    Thank you for using Enfold :)

    Best regards,
    Vinay

    in reply to: Logo Centre, menu items to the left and right? #739264

    Hi,

    Sorry I did not understand what is the issue with the code provided earlier? please upload a screenshot/mockup to imgur.com and share the link here so we can help you better :)

    Best regards,
    Vinay

    in reply to: Index Listings of Categories – NOT RESOLVING. Help? #739255

    Hi,

    @2GuysTalking
    defining a higher memory limit in wordpress and if possible increasing the memory on the hosting server should resolve this issue.

    To increase the wordpress memory limit please access wp-config.php file and add the below line

    define('WP_MEMORY_LIMIT', '256M');
    

    For a detailed explaination please check this link http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
    and you can contact your service provider to increase the memory limit.

    If you still have an issue please try the solution shared by @Micheal0424

    Let us know if you have any questions, we are happy to help.

    Best regards,
    Vinay

    Hi,

    Glad it’s sorted for you now!
    To know more about enfold features please check – http://kriesi.at/documentation/enfold/
    Thank you for using Enfold :)

    Best regards,
    Vinay

    in reply to: Builder keeps crashing/not saving #739253

    Hi,

    Do you get any error message when the builder crash?

    If you insert shortcodes without proper closing tag somethings this creates a open html tag and cause the issue.

    If you still have any issue please create a new ticket and share the login info so we can take a closer look at it and let us know how we can re-produce this issue on your site.

    Best regards,
    Vinay

    in reply to: Text and logo in footer #739252

    Hey tiomkin,

    The mockup is not clear and does not really show the end result you are trying to achieve however the logo image and text can be easily added to the footer from Appearance > Widgets > Footer > drag and drop a text widget to the footer column and please your image here using the html tag.

    <img src="smiley.gif" alt="Smiley face">
    

    Best regards,
    Vinay

Viewing 30 posts - 3,901 through 3,930 (of 10,428 total)