Forum Replies Created

Viewing 30 posts - 6,091 through 6,120 (of 23,923 total)
  • Author
    Posts
  • Add this to your custom CSS:

    #top .ajax_search_response a.ajax_search_entry {
        display: block;
        text-decoration: none;
        line-height: 1.4em;
        font-size: 12px;
        height: auto;
        padding: 10px 16px;
        border-bottom-style: dashed;
        border-bottom-width: 1px;
        clear: both;
        overflow: hidden;
        float: none;
        width: auto;
        text-align: left;
    }

    Best regards,
    Josue

    in reply to: Background Menu Area bottom Missing #452822

    Hi Andy!

    Frontpage is working fine now, i re-updated it and it got fixed.

    Cheers!
    Josue

    in reply to: Testimonial Slider Tweak #452811

    Hey!

    A. Use the following to make them appear on hover (what did you mean only in mobile? you should know that there is no ‘hover’ in mobile):

    .avia-slideshow-arrows {
        display: none;
    }
    
    .avia-testimonial-wrapper:hover .avia-slideshow-arrows{
        display: block;
    }

    B. They are always in the middle from what i see.

    C. Use the following to make them skinnier (adjust as needed):

    #top .avia-slideshow-arrows a{
        height: 30px;
        width: 30px;
        line-height: 32px;
        font-size: 12px;
    }
    
    .avia-slideshow-arrows a:before{
        line-height: 32px;
    }

    Cheers!
    Josue

    • This reply was modified 10 years, 10 months ago by Josue.
    in reply to: Posts not displaying on Tags page #452804

    Create an empty tag.php file in your child theme and put the contents of archive.php (from the parent theme) in it.

    Best regards,
    Josue

    in reply to: WPML/Woocommerce checkout stays grey #452619

    Hey,

    A fix for this will be included in the next version of Enfold, please be patient.

    Cheers!
    Josue

    in reply to: Background Menu Area bottom Missing #452353

    We wish it was like that but Firefox mobile is somewhat buggy and the usage share is really low so it’s not really worth the effort. Thanks for your understatement anyways.

    Regards,
    Josue

    in reply to: Background Menu Area bottom Missing #452349

    Hi!

    What browser is that? right now we only support Chrome on Android.

    Best regards,
    Josue

    in reply to: Testimonial Slider Tweak #452346

    Hi,

    1. Open /enfold/config-templatebuilder/avia-shortcodes/testimonials.php and look for line 289:

    $controls = false;
    

    Replace it by this:

    $controls = true;
    

    2. Add this to Quick CSS / child style.css:

    .avia-testimonial {
        min-height: 300px !important;
    }

    Regarding 1, you can have this mod on your child theme by copying the testimonials.php file to your child theme directory and applying this:
    http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/

    Regards,
    Josue

    in reply to: Main menu font #452329

    Hey!

    You had a typo in your Quick CSS (missing closing “}” at the end) that was blocking the Advanced Styling generated code, it’s fixed now and you can see your modifications reflecting on the site.

    Cheers!
    Josue

    in reply to: Background Menu Area bottom Missing #452328

    Hi!

    I checked it on a Moto G and it seems to be working fine, can you post a screenshot of your view?

    Cheers!
    Josue

    in reply to: ALTERNATIVE MENU WITH LINKS #452326

    Hi!

    Sorry i didn’t understand what you’re referring to in your last message, can you provide a screenshot/mockup of what you want to achieve?

    Regards,
    Josue

    Hi,

    Try adding this at the very end of your theme / child theme functions.php file:

    function add_custom_script(){
    ?>
    <script>
    (function($){
        $(window).load(function() {
        	$(".social_bookmarks").append($("#menu-item-search").detach());
        });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    And this to Quick CSS / style.css:

    li#menu-item-search a {
        line-height: 32px !important;
        height: auto !important;
    }

    Regards,
    Josue

    in reply to: Testimonial Slider Tweak #452323

    Hi,

    Can you post the link to the page where you have this?

    Regards,
    Josue

    in reply to: How do I…? – Part 2 #452322

    Hey!

    Can you please make the account an admin so i can edit the custom CSS?

    Best regards,
    Josue

    in reply to: One Color Section for Several Pages? #452319

    Hi Scott,

    You can mix it with is_page and pass the Page IDs of the pages you want to affect:

    add_action('ava_after_main_title', function() {
    if(is_page(array(2,3,4,5)){
    	?>
    		SECTION HTML HERE
    	<?php
    }
    });

    Best regards,
    Josue

    in reply to: Social Icons in Social Profiles Section #452318

    Hey Scott,

    Yes that’s the way to do it when no child theme is available, alternatively you can use this plugin to store these custom functions as a plugin (Plugins > Edit functions) separated from the theme files (this will prevent overriding when updating).

    Regards,
    Josue

    in reply to: Theme Options changes not working #452316

    We looking forward to hearing from you :)

    Regards,

    Josue

    Hi,

    Can you post the link to your website please?

    Regards,
    Josue

    in reply to: How do I…? – Part 2 #452226

    Remove this first part:

    @media only screen and (min-width: 767px) and (max-width: 1024px){
        #socket .sub_menu_socket {
            position: absolute;
            left: 50px;
            right: 0px;
            text-align: center;
            top: 10px;
        }
    
        #socket .sub_menu_socket li {
            display: inline-block;
            padding: 0px;
            float: none;
        }
    }

    All the code to adjust the socket should be:

    @media only screen and (max-width: 480px){
    #socket .container {
        text-align: center;
    }
    #socket .social_bookmarks {
      float: none;
      margin-left: 0px;
      display: inline-block;
    }
    #socket .copyright {
      float: none;
      display: inline-block;
      width: 100%;
    }
    }
    
    @media only screen and (max-width: 1024px)
    #socket .sub_menu_socket {
      display: none;
    }
    }

    Regards,
    Josue

    • This reply was modified 10 years, 10 months ago by Josue.
    in reply to: Image Hover Variations #452224

    Yes, that works. You can purchase an item as many times as you want on a single account.

    Best regards,
    Josue

    in reply to: How do I…? – Part 2 #452182

    Use this code to center the copyright and icons on iPhone:

    @media only screen and (max-width: 480px){
    #socket .container {
        text-align: center;
    }
    #socket .social_bookmarks {
      float: none;
      margin-left: 0px;
      display: inline-block;
    }
    #socket .copyright {
      float: none;
      display: inline-block;
      width: 100%;
    }
    }

    And this to hide the menu on iPads and lower:

    @media only screen and (max-width: 1024px)
    #socket .sub_menu_socket {
      display: none;
    }
    }

    Cheers!
    Josue

    • This reply was modified 10 years, 10 months ago by Josue.
    in reply to: How do I…? – Part 2 #452171

    Hey!

    Try adding this code to the Quick CSS / style.css:

    @media only screen and (min-width: 767px) and (max-width: 1024px){
        #socket .sub_menu_socket {
            position: absolute;
            left: 50px;
            right: 0px;
            text-align: center;
            top: 10px;
        }
    
        #socket .sub_menu_socket li {
            display: inline-block;
            padding: 0px;
            float: none;
        }
    }

    That will center the menu horizontally between 768px and 1024px, the fb link issue is fixed, as you said it was one of the widgets that had some unclosed HTML tags.

    Cheers! 
    Josue

    in reply to: Header Opacity #452149

    Try with the following CSS code:

    #top .social_bookmarks li a {
        color: white;
    }
    
    #top .av_header_transparency .social_bookmarks li a {
        color: gray;
    }

    Best regards,
    Josue

    in reply to: How do I…? – Part 2 #452146

    1. FB icon not showing is caused by some a tag linking to http://www.strengthinnumberscoaching.com/test/ynab, not sure how it ended there, if you want me to check it hand me an admin account.

    2. Can you post a screenshot of this? i see them stacking at around 430px wide but that’s understandable.

    Best regards,
    Josue

    in reply to: Header Opacity #452141

    You can change that in the Theme Options (set white on General Styling > Header and gray in Header > Transparency Options).

    Regards,
    Josue

    in reply to: How do I…? – Part 2 #452137

    Cool, i’ll be around for a while in case you need help :)

    in reply to: Always open Advanced Layout Builder #452135

    You are welcome, glad to help :)

    Regards,
    Josue

    in reply to: How do I…? – Part 2 #452134

    There is a way to mod the progress bar as you want but as D it does require some custom development work.

    Let me know if you manage to get 1 working :)

    Regards,
    Josue

    in reply to: How do I…? – Part 2 #452123

    Hey!

    Sorry for the late reply.

    1. That’s currently not possible in Enfold -out of the box- but i managed to get a working solution, first add this to your child theme functions.php:

    function attach_social_icons_to_mobile_menu(){
    ?>
    <script>
    (function($){
        $(window).load(function() {
        		var social_buttons 		= $("#header").find('ul.social_bookmarks').clone(),
        			mobile_advanced 	= $("#mobile-advanced");
    
    			mobile_advanced.prepend(social_buttons);
        });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'attach_social_icons_to_mobile_menu');

    And this to your child theme style.css:

    #mobile-advanced ul.social_bookmarks {
        display: block !important;
        position: absolute;
        top: 0;
        left: 25px;
        top: 25px;
    }
    
    #mobile-advanced ul.social_bookmarks li, #mobile-advanced ul.social_bookmarks li a {
        clear: none;
        width: 40px;
        min-height: 40px;
        line-height: 40px;
    }
    
    #mobile-advanced ul.social_bookmarks li, #mobile-advanced ul.social_bookmarks li a{
        border: 0 !important;
    }
    
    #mobile-advanced ul.social_bookmarks li > a:before{
        content: attr(data-av_icon);
        position: relative;
        top: auto;
        font-size: 22px;
        margin-left: 0;
    }

    4D: That would require additional custom development, unfortunately that’s not something we can assist you with here.

    4E: Add this to Quick CSS / child style.css:

    .avia-progress-bar .progress {
        box-shadow: none;
    }

    P.S. Don’t push your topics, it creates the contrary effect as it puts the thread last in our support queue (it orders topics based on activity).

    Regards,
    Josue

    • This reply was modified 10 years, 10 months ago by Josue.
    in reply to: Main menu font #452120

    Hi Charlotte,

    Can you please create us a WordPress administrator account? post it here as a private reply.

    Regards,
    Josue

Viewing 30 posts - 6,091 through 6,120 (of 23,923 total)