Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1167730
    robinjr
    Participant

    Every image is a perma link when i get my mouse on it. how i remove it?

    and when i click on a blog post the image is so big how i fix this?

    #1167734
    robinjr
    Participant
    #1167801
    Lely
    Moderator

    Hello There,

    We can add the following on Appearance > Customize > Custom > Edit Global Javascript:

    jQuery(document).ready(function($){
    $('.blog a.entry-thumb').attr('title', '');
    });

    To reduce the size of the image, please add this custom CSS on Appearance > Customize > Custom > Edit Global CSS:

    .single-post .entry-featured {
        max-width: 50%;/*Adjust this accordingly*/ 
        margin: 0 auto;
    }

    Hope this helps.

    #1167828
    robinjr
    Participant

    How about deleting that post icon?

    #1167831
    robinjr
    Participant

    And i dont want it shows this when i click on the image.

    #1167941
    Paul R
    Moderator

    Hi,

    You can add this under Custom > Edit Global CSS in the Customizer.

    
    .blog .format-standard .entry-title:before {
         display:none;
    }
    
    .blog .format-standard  a.entry-thumb:hover img {
        opacity: 1;
    }
    

    Hope that helps

    #1168196
    robinjr
    Participant

    we are close only that need to be gone is the icon

    #1168842
    Rad
    Moderator

    Hi there,

    Please change it to this

    .blog .entry-title:before, .blog .entry-thumb:before {
         display:none !important;
    }
    
    .blog a.entry-thumb:hover img {
        opacity: 1;
    }

    Hope this helps.

    #1171181
    robinjr
    Participant

    For some reason the blog is english but everything else is dutch, i want it in dutch

    #1171210
    robinjr
    Participant

    also the blog message the image is in centre and it needs to be on the left side. and the on the blog message the picture is also to big. and there is also a icon left to the title. see screenshot

    #1171263
    Paul R
    Moderator

    Hi,

    1. You can change the word Blog under Appearance > Customize > Renew > Blog Options > Blog Title.

    2. You can add this under Custom > Edit Global CSS in the Customizer.

    
    .single-post .entry-featured {
        max-width: 400px;
        margin: 20px 0 0;
    }
    
    .single-post .entry-title:before {
        display:none;
    }
    
    .single-post  .entry-content > h3
        margin-top: 0px;
    }
    

    Hope that helps.

    #1174456
    robinjr
    Participant

    we are close, i only need to change read more in lees meer. my wordpress is already dutch from start

    #1174622
    Christian
    Moderator

    Please add the code below in your functions.php

    function change_text( $translated_text, $text, $domain ) {
      switch ( $translated_text ) {
        case 'Read More' :
          $translated_text = __( 'lees meer', '__x__' );
          break;
      }
      return $translated_text;
    }
    add_filter( 'gettext', 'change_text', 20, 3 );

    Thanks.

    #1175084
    robinjr
    Participant

    were can i find this function.php

    #1175090
    robinjr
    Participant

    my whole blog aint working anymore

  • <script> jQuery(function($){ $("#no-reply-1167730 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>