Forum Replies Created

Viewing 30 posts - 25,471 through 25,500 (of 34,362 total)
  • Author
    Posts
  • in reply to: Can't show show create date below title in a blog post #991095

    Hi,
    I was not sure if you wanted the tags also moved, so this code leaves it in place.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_move_date_script(){
      ?>
      <script>
      jQuery(window).load(function(){
      jQuery( '.post-entry' ).each(function() {
      jQuery( this ).find( 'span.post-meta-infos' ).insertBefore( jQuery(this).find('.av-vertical-delimiter') );
      });
      });
      </script>
      <?php
      }
      add_action('wp_footer', 'custom_move_date_script');

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

    #top.single-post span.post-meta-infos {
    margin-top: 0px !important; 
    padding-top: 0px !important;
    }
    #top.single-post span.av-vertical-delimiter {
    display: none !important;
    }

    Please see screenshot in Private Content area.

    Best regards,
    Mike

    Hi,
    Glad to hear that it helped. Without looking, I’m not sure why this happened, but I have seen some plugins setting css rules using the “*” which tends to effect other elements, and I’ve seen minifying plugins that cause odd issues with their aggressive space saving techniques.
    But glad it’s solved now, shall we close this then?

    Best regards,
    Mike

    Hey radnerreyes,
    I see that your page is giving the js error: “Uncaught ReferenceError: jQuery is not defined”
    Try disabling your plugins. If that resolves the issue, reactivate each one individually until you find the cause.
    If this doesn’t help, please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Menu text appears twice in the mobile version. #991013

    Hey karowebdesign,
    Please check if Enfold Theme Options > Burger/Mobile Menu > Clone title menu items to submenu is set to “Create a clone for the title menu item”

    Best regards,
    Mike

    in reply to: is there a versioning for the menu ? #991011

    Hey karowebdesign,
    Sorry, the versioning is a wordpress core function and it is only for pages and posts.
    Is there a chance that a different menu was selected and your menu is in tact and just not selected?

    Best regards,
    Mike

    in reply to: Latest Enfold – All demo images not importing! #991010

    Hey LCCleworth,
    Which demo do you wish to install, and which webhost are you using?
    Can we reset your site and install it for you?
    Please include FTP access in the Private Content area so we can assist.

    Best regards,
    Mike

    in reply to: Website Creation Attribution #991007

    Hi,
    Glad Rikard could help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Full screen slider / image with footer #991006

    Hey pistachiouk,
    Which slider are you going to be using? Adding this css to your Quick CSS works with the easy slider:

    #socket {
        position: fixed;
        bottom: 0;
        width: 100%; 
    }

    Best regards,
    Mike

    in reply to: Layerslider white line on left #991005

    Hi,
    Sorry, I’m having trouble making out the issue in your screenshot, please draw a arrow on the image to point it out.
    It’s not the slideshow control above the slideshow image is it?

    Best regards,
    Mike

    in reply to: Embedding Comodo Seal in Footer #991004

    Hey Alexander,
    I’m not sure which footer seal you are referring to, it seems that your footer items are already on all pages. Please include a screenshot of the item. You can use https://postimg.cc to post the image.
    Please also include admin access to your site so we can assist.

    Best regards,
    Mike

    in reply to: Add social and a button before burger #991003

    Hey webWahine,
    Do you already have the button in the header? We can assist with moving it and the social icons to the left of the menu with some javascript.
    Please link to the page so we can take a closer look.

    Best regards,
    Mike

    in reply to: Can't show show create date below title in a blog post #991000

    Hey pawder,
    Please include the url to the page in question so we can take a closer look.

    Best regards,
    Mike

    in reply to: Main Menu problem #990998

    Hey takozzo,
    This is because the menu item has no url. Typically on one page sites the link that is for the main url or #top is the one that is assumed for the page.
    We can hide the it’s selection on the homepage if you wish. When going to any of it’s sub-menu pages it is also selected because it is the page’s parent, which is correct.
    Would you like to have no menu items selected at the top of the homepage?

    Best regards,
    Mike

    Hey aderal2016,
    The only information I could find on this was doing so with woocommerce shortcodes

    [product_attribute attribute="color" filter="black"]

    Perhaps the woocommerce support forum will already have this solution.

    Best regards,
    Mike

    in reply to: external links in main menu, with wpml #990995

    Hey tinderella,
    Looking at the code above I would guess it is coming from the plugin that is adding the flag
    “/wp-content/plugins/sitepress-multilingual-cms/”
    If this doesn’t help, please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Add nofollow attribute to external links in buttons #990994

    Hey Andreas_BS,
    If you want to place the no-follow only on external links, please turn on the custom CSS field for Advanced Layout Builder elements – http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
    Then add this custom class (rel-nofollow) to buttons you would like to have rel=’nofollow’ – http://i.imgur.com/KOaCgrv.png
    and go to Appearance > Editor and open Functions.php file and add following code:

    function custom_class_rel(){
    ?>
     <script>
    jQuery(window).load(function(){
    jQuery('.rel-nofollow a').attr('rel','nofollow');
    });
     </script>
    <?php
    }
    add_action('wp_footer', 'custom_class_rel');

    If this doesn’t work please try this instead:

    function custom_class_rel(){
    ?>
     <script>
    jQuery(window).load(function(){
      jQuery( '.rel-nofollow' ).each(function() {
      jQuery( this ).find( 'a' ).attr('rel','nofollow');
      });
      });
     </script>
    <?php
    }
    add_action('wp_footer', 'custom_class_rel');

    Best regards,
    Mike

    in reply to: Change field size contact form #990983

    Hey DianaLoola73,
    Adding the page ID to your css will solve, please try this:

    #top.page-id-3313 .avia_ajax_form #avia_4_1 {
         width: 100px;
      height: 44px;
    padding top: 8px;
    }

    Best regards,
    Mike

    in reply to: Moving the categories to the end of the post? #990982

    Hi,
    I checked the link and it is the includes/loop-index.php file.

    Best regards,
    Mike

    in reply to: Issues on mobile #990981

    Hi,

    @ExquisiteRetail

    I found a different thread of yours that pointed to another site, please see in the Private Content area.
    But I’m not sure that it contains the issue you wrote about here, please include a screenshot so we are sure to be looking at the right issue. You can add a screenshot with https://postimg.cc

    Best regards,
    Mike

    in reply to: Issues on mobile #990979

    Hi,

    @mamaimam
    if I understand correctly, your current mobile menu was a full screen overlay, and your example site is a flyout menu.
    I went to Enfold Theme Options > Main Menu > Burger/Mobile Menu > Menu Overlay Style and changed it to “Sidebar Flyout Menu (Classic)”
    Please check that this is what you wanted.
    I see your menu items are very large, so you will want to make them smaller.
    If you have any more questions Please open a new thread so we can assist, as this is not your thread your login info will not be private here and I removed it for your security.

    Best regards,
    Mike

    in reply to: Flaticon #990977

    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: arrange icons in line #990976

    Hi,
    Sure, add the custom id “af_social” to the section you want the social icons in, then add this Quick CSS:

    #af_social .av_font_icon {
    display: inline-block !important;
    }
    #af_social {
    text-align: center !important; 
    }

    Best regards,
    Mike

    in reply to: CSS for No Border in Main Content Area? #990973

    Hi,
    Oh, I see. Please try this code in the General Styling > Quick CSS field:

    .container_wrap {
        border-top-style: none !important; 
        border-top-width: 0px !important; 
    }

    and for tables, please try:

    table {border: none !important; }
    table {border-collapse: collapse !important;}

    Best regards,
    Mike

    in reply to: Color Section Padding #990972

    Hey designyvr,
    To adjust the padding of a color section, please enable: Enfold Theme Options > Layout Builder > Show element options for developers
    then go to your color section and add a custom ID in the “For Developers: Section ID” box at the bottom of the element.
    then add your custom css for the padding in the General Styling > Quick CSS field, like this:

    #custom_id {
    padding: 20px 30px !important;
     }

    The first number is for top & bottom padding, and the second number is for left & right padding.
    We are happy to assist if you would like some help with some custom css to add padding.

    Best regards,
    Mike

    in reply to: Can I buy or download Endfold drop and drag plugin? #990970

    Hey Edgar,
    Sorry our advanced layout builder is built into the Enfold theme, and doesn’t install as a plugin or work with other themes.
    We do invite you to consider switching your theme to Enfold to enjoy our advanced layout builder.
    Thank you.

    Best regards,
    Mike

    in reply to: HTML-Attribut title (optional) #990969

    Hey frank,
    Wir können mit etwas CSS helfen, die Farbe eines Menüelements zu ändern.
    Bitte verlinken Sie auf das Menü und geben Sie an, welches Produkt und welche Farbe Sie möchten.
    Empfehlen Sie auch, wenn Sie eine Schwebefarbe wünschen.

    —————
    We can assist with some css to change the color of one menu item.
    Please link to the menu and advise which item and color you would like.
    Also advise if you wish for a on hover color.

    Best regards,
    Mike

    in reply to: Top Bar Padding #990965

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

    .phone-info {
     padding-top: 10px !important;
    padding-bottom: 0px !important;
    }
    .social_bookmarks  {
     padding-top: 5px !important;
    padding-bottom: 0px !important;
    }

    Best regards,
    Mike

    in reply to: arrange icons in line #990963

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

    #av_section_11 .av_font_icon {
    display: inline-block !important;
    }
    #av_section_11 .post-entry-12 {
    text-align: center !important; 
    }

    Best regards,
    Mike

    Hey FerryK,
    I believe you are referring to the letter spacing, you can adjust it with css, like this example:
    h1 {letter-spacing: 1px !important;}
    with this you can use negative values also.

    Best regards,
    Mike

    in reply to: Flaticon #990959

    Hi,
    That is great news, it probably was just a caching issue, unless there is anything else we can assist with, shall we close this then?

    Best regards,
    Mike

Viewing 30 posts - 25,471 through 25,500 (of 34,362 total)