Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #216332

    Hello,

    I have tree small requests.

    1) Is it possible to change the size of the featured image on the post pages? I like the size it is when I create a page which lists posts (http://www.bazam.co.uk/news/), but they get quite big on the actual post pages (http://www.bazam.co.uk/brand-satellite-completes-ettrick-yarrow-valleys-design-project/). Is it possible for the featured image on the post page to be the same size as it is on the list of posts page?

    2) Once on the individual post pages, can the featured image have no link? ie: nothing happens when you mouse over it.

    3) You gave me some additional code to create some space around images on normal text pages:
    }
    .av_textblock_section { margin-bottom: 25px; }
    .avia_textblock img { margin-left: 25px;
    margin-bottom: 25px; }
    Can I have some similar code for doing the same to images inserted into post pages?

    Many thanks in advance.

    Giles

    #217383

    Hi Giles!

    1) Yes, go to Enfold > General Settings and select another “Single Post Style”. If you do not want to change the style open up wp-content/themes/enfold/includes/loop-index.php and replace

    
    $current_post['slider']  	= get_the_post_thumbnail($the_id, $size);
    

    with

    
    $size = 'square';
    $current_post['slider']  	= get_the_post_thumbnail($the_id, $size);
    

    You can also replace ‘square’ with another thumbnail size like ‘entry_with_sidebar’ or ‘entry_without_sidebar’.

    2) Insert following code into the quick css field

    
    
    #top.single .big-preview, #top.single .small-preview{pointer-events: none !important;}
    

    3) Can you post a link to the page with the images please?

    Regards,
    Peter

    #219577

    Peter,

    Thanks for your email.

    Issue 2 (hover over on featured image on post page) has been resolved. Thanks.

    Issue 1 9reducing the featured image on the post page (eg: http://www.bazam.co.uk/brand-satellite-completes-ettrick-yarrow-valleys-design-project/) to the same size as the list of posts page: http://www.bazam.co.uk/news/ has not. Do I need to input the size to the code you told me to replace? If so, how do I do that?

    Issue 3: Here is an example of a text page with 25px margin around the image: http://www.bazam.co.uk/brand-consultancy/ Here is an example of a post page, which doesn’t have the 25px margin around the image: http://www.bazam.co.uk/brand-satellite-completes-ettrick-yarrow-valleys-design-project/ Can you give me some code to add, so there is a 25px margin around the images on the post pages? Thanks.

    Giles

    #220216

    Hey!

    For 1, add this code:

    .single-post .single-small.with-slider .small-preview {
        width: 80px !important;
        height: 80px !important;
    }

    For 3, this will do it:

    .alignright {
        margin-left: 25px !important;
        margin-bottom: 25px !important;
    }
    
    .alignleft {
        margin-right: 25px !important;
        margin-bottom: 25px !important;
    }
    

    Best regards,
    Josue

    #221278

    Josue,

    Perfect. Many thanks.

    Giles

    #221302

    You are welcome Giles, glad we could help :)

    Regards,
    Josue

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Some small changes to posts’ is closed to new replies.