Tagged: ,

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1209788

    Hello,
    1. We’d like to move the date and author name up the page… under the main Blog title.
    2. We have an awkward wrapping of Tags at the bottom of a post. Some tags are on the right and some are on the left.
    Thanks so much,
    Jas

    #1210796

    Help! Please

    #1211565

    Hi,
    Sorry for the late reply, please try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_meta_script(){
      ?>
      <script>
    (function($){
      $(window).load(function(){
      $( '.post-entry' ).each(function() {
      $( this ).find( '.post-meta-infos' ).css({ 'margin-top': '0px','padding': '0px'}).insertAfter( $(this).find('span.blog-categories.minor-meta'));
       $( this ).find( '.blog-tags.minor-meta' ).css({ 'display': 'inline-block'}).insertAfter( $(this).find('span.post-meta-infos'));
      });
      });
      })(jQuery);
      </script>
    <?php
    }
    add_action('wp_footer', 'custom_meta_script');

    Then clear your browser cache and check.
    Please see the screenshot in Private Content area of the expected results.

    Best regards,
    Mike

    #1211606

    Thank you Mike!

    #1211616

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Move Date and Author directly under Blog Title & Tag Wrapping Issue’ is closed to new replies.