Forum Replies Created

Viewing 30 posts - 25,591 through 25,620 (of 34,863 total)
  • Author
    Posts
  • in reply to: Transparent header w/ burger menu #1000124

    Hi,
    Please add this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 989px) { 
      .responsive #top #main {margin-top: -80px!important;}
      #top #wrap_all .av_header_transparency {background-color: transparent!important;}
      div#header_main > .container {display: block !important;}
      }

    Best regards,
    Mike

    in reply to: Gallery image effect #1000121

    Hi,
    That is correct. Please try and once you are satisfied, let us know when we can close this thread.

    Best regards,
    Mike

    in reply to: Hamburger Menu Styling #1000118

    Hey evertypedesign,
    Please try this code in the General Styling > Quick CSS field:

    .html_av-overlay-side #top .av-burger-overlay-scroll {
        background: #ffffff !important; 
    }
    .html_av-overlay-side #top #wrap_all .av-burger-overlay-scroll #av-burger-menu-ul a {
        color: #808080 !important; 
    }

    If this doesn’t work, then try adding to WordPress > Customize > Additional CSS
    Then Please clear any cache plugin and your browser cache and check.

    Best regards,
    Mike

    in reply to: Enfold Child Theme #1000116

    Hey kingsleygroup,
    Please download our official child theme from this page in our documentation

    Best regards,
    Mike

    in reply to: Menu Editor not showing up #1000113

    Hi,
    That is good to hear, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Gallery image effect #1000110

    Hey B,
    Please try this code in the General Styling > Quick CSS field:

    #top.page-id-4359 .container .av-masonry .av-masonry-image-container:before {
        background: none !important; 
    }

    If it doesn’t help, then try adding to WordPress > Customize > Additional CSS
    Please clear any cache plugin and your browser cache and check.

    Best regards,
    Mike

    in reply to: Changing colour of timeline navigation arrows #1000106

    Hey atifaijaz123,
    I tested this on my localhost and found that the code needed “!important;” to work.
    Please try this code in the General Styling > Quick CSS field and adjust the color to suit:

    .main_color .av-timeline-nav a span {
        background-color: #ff7827 !important; 
        opacity:1;
    }

    Best regards,
    Mike

    in reply to: Transparent header w/ burger menu #1000104

    Hey mattb1169,
    Please try this code in the General Styling > Quick CSS field:

    .header_color .header_bg, .header_color .main_menu ul ul, .header_color .main_menu .menu ul li a, .header_color .pointer_arrow_wrap .pointer_arrow, .header_color .avia_mega_div, .header_color .av-subnav-menu > li ul, .header_color .av-subnav-menu a{
    background-color:transparent !important;
    }

    Best regards,
    Mike

    in reply to: Moving "You might also like" on blog pages #1000103

    Hey robsdesigns,
    I took a look at your page, and found that moving the related_posts box above the author-bio doesn’t work very well, but moving it above the share-box does. Try adding this code to the end of your functions.php file in Appearance > Editor:

    
    function move_related_posts(){
      ?>
      <script>
      jQuery(window).load(function(){
      jQuery( '.template-single-blog' ).each(function() {
      jQuery( this ).find( '.related_posts' ).insertBefore( jQuery(this).find('.av-share-box') );
      });
      });
      </script>
      <?php
      }
      add_action('wp_footer', 'move_related_posts');

    Then add this code in the General Styling > Quick CSS field:

    
    #top.single-post .related_posts {
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
    }

    See the Private Content area for a screenshot of the expected results.

    Best regards,
    Mike

    in reply to: Mobile Header Height and Position #1000100

    Hi,
    Please try this code in the General Styling > Quick CSS field:

    .responsive #top #header .logo, .responsive #top #header .logo a, .responsive #top #header .logo img {
        max-width: 150px!important; 
    }

    Am I looking at the correct page? Please see the link in the Private Content area.

    Best regards,
    Mike

    in reply to: Change color and size of full width separator #1000097

    Hi,
    To add padding to each of your sections on your “software” page, Please try this code in the General Styling > Quick CSS field:

    #top.page-id-7712 .avia-section-large {
    padding: 50px 0;
    }

    adjust the padding to suit.
    If you want this on every page, try removing the page ID (page-id-7712).

    Best regards,
    Mike

    in reply to: Change the default colour of the dark translucent button #1000094

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Change the default colour of the dark translucent button #1000085

    Hi,
    Please do open a new thread, as it’s a different topic and this one is long, thanks.

    Best regards,
    Mike

    in reply to: Change the default colour of the dark translucent button #1000079

    Hi,
    That is great news, unless there is anything else we can assist with, shall we close this then?

    Best regards,
    Mike

    Hi,
    Glad we could help, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    Hi,
    This is correct. We will leave this thread open for now so you can test. Please let us know once you are fully satisfied and we can close the thread.

    Best regards,
    Mike

    Hi,
    I tried to recreate the issue on my localhost and found the issue was with the function that called the child theme avia.js file, replacing yours:

    
    function wp_change_aviajs() {
       wp_dequeue_script( 'avia-default' );
       wp_enqueue_script( 'avia-default-child', get_stylesheet_directory_uri().'/js/avia.js', array('jquery'), 2, true );
    }
    add_action( 'wp_print_scripts', 'wp_change_aviajs', 100 );

    with this:

    function add_my_script() {
      wp_enqueue_script( 'my-custom-script', get_stylesheet_directory_uri() . '/js/avia.js', array('jquery'), '1.0.1', true );
    }
    add_action( 'wp_enqueue_scripts', 'add_my_script', 10);

    removed the error no matter which version of avia.js was used, on your live site and my localhost.
    So right now on your live site the child theme is active with the newer avia.js and there is no error.
    I recommend using the new avia.js because a lot has changed in it since v4.0.7. When I compared yours to the standard v4.0.7 a lot of functions were missing, but none were added, I believe that you might have been using an even older version.

    Best regards,
    Mike

    in reply to: mobile easy full with slider #999793

    Hi,
    I couldn’t login with the info you posted, please check. Also please see the screenshots in the Private Content area, and let us know which code effect you like best, and I will see about putting in place when I can login.

    Best regards,
    Mike

    in reply to: Partner logo element problem (repeating / looping image) #999787

    Hi,
    The code window that your client saw is the Avia Layout Builder Debugger I tried to assist by removing it for you, since your client is “freaking out”
    but for your other questions, Dude will know more about. Please reply back if the issue is not resolved so your thread remains visible on our end. Sorry for any inconvenience.

    Best regards,
    Mike

    in reply to: Change the default colour of the dark translucent button #999771

    Hi,
    Please try adding this css:

    #top #wrap_all .avia-button-fullwidth .avia_iconbox_title {
        position: relative;
        top: -3px !important; 
    }

    It seemed the full width button was the only one that was off on the ASX page, I tried looking at some other pages for a button that was off centered, but didn’t find any. Please point to any that you find.

    Best regards,
    Mike

    in reply to: Change color of Submit button using shortcode #999659

    Hi,
    Please try this code in the General Styling > Quick CSS field:

    @media only screen and (min-width: 767px) { 
    #top #custom_html-3 .modified_width .button {
        width: 90% !important; 
        margin-left: 10% !important; 
    }
    #top #custom_html-3 .avia_ajax_form .text_input {
        width: 98% !important; 
    }
    }

    Best regards,
    Mike

    Hi,
    With css we can target the maga menu titles so you won’t need to add tags to the menu titles, which can cause errors.
    Here is an example:

    .avia_mega_div span.mega_menu_title a {
    color: red !important;
    font-weight: bolder !important; 
    }

    I made the color red so you can see what it effects. Please note that the mobile menu doesn’t have the same classes, but we can still address the menu with css.
    Let us know once you have removed the tags, and have setup your mobile menu with the items that will show, then make a list of menu styling that you would like.

    Best regards,
    Mike

    in reply to: Installation #999340

    Hi,
    Thank you, the new ftp account does login, but the account directory is set to a single folder, and not the root folder where your WordPress installation is. Please change the directory to ” / ”
    Here is a HostGator article to assist.

    Best regards,
    Mike

    in reply to: Styling a specific category #999336

    Hi,
    For the “highlight” widget the date & headline are two different classes:

    
    #newsbox-3 a.news-link .news-headline
    #newsbox-3 a.news-link .news-time
    

    So the “#newsbox-3” is the widget, and the “a.news-link ” is the link that wraps the headline and date, but the “news-headline” is the headline & “news-time” is the date.

    We will put them together like this to make them both white:

    #newsbox-3 a.news-link .news-headline,#newsbox-3 a.news-link .news-time {
    color: #fff !important;
    }

    To use this code again for another widget, just change “#newsbox-3” to your new widget ID.
    I hope this helps explain it.

    Best regards,
    Mike

    Hi,
    Glad to hear, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: How can i achieve this dynamic look on slider? #999150

    Hi,
    Please see this tutorial on adding this to Enfold: Add JS Particles Background

    Best regards,
    Mike

    Hi,
    Please try changing to this:

    .single-post article.post-entry .entry-content img{
    padding-top:15px !important;
    padding-bottom:15px !important;
    padding-right:0px !important;
    padding-left:0px !important;
    display:block;
    margin-left:auto;
    margin-right:auto;
    }

    Best regards,
    Mike

    in reply to: Categories widget text weight #999144

    Hi,
    I took a look at your site but didn’t see any widgets, then I noticed above that said you didn’t create it yet.
    The widgets are given different IDs when they are created, so it is a little hard to write the correct css for a widget before it is created, and not effect other widgets. But as an example here is how the change the font weight, color, & size with css:

    .widget_categories a {
    color: red !important;
    font-weight: bolder !important; 
    font-size: 12px !important;
    }

    Please let us know when you have a activate widget you would like to change, so we can assist.

    Best regards,
    Mike

    in reply to: Installation #999141

    Hi,
    I was able to login to your WordPress site, but not FTP. I get a connection and the user is ok, but it fails with the password. Please check.
    I see that your current theme is v3.7.1 and that it is a active commerce site, might I suggest creating a staging site (clone) to test how your site will work with the update? Please at least ensure to have a full backup.
    Once we have a ftp login, and your ok, we can assist with the update.

    Best regards,
    Mike

    in reply to: Website is not working #999138

    Hey Aldrich Torres,
    Please include a admin login & FTP access in the Private Content area.

    Best regards,
    Mike

Viewing 30 posts - 25,591 through 25,620 (of 34,863 total)