BuddyBoss Home – Web › Support Forums › Solutions › Social Learner › Featured Image Size
Tagged: featured image
- This topic has 6 replies, 4 contibutors, and was last updated 8 years, 8 months ago by Anonymous.
Question
February 21, 2016 at 11:25 am #59845@kaypitreI’m running the Boss theme with the Social Learner (Sensei) child theme. What is the recommended image size for blog posts?
Answers
February 22, 2016 at 2:17 pm #59918@
AnonymousHi @kaypitre, The standard size for Blog featured image should be around 1050×420
Regards
March 13, 2016 at 7:56 am #62774@mln83Hi @pallavi,
The image quality is fine in the Blog Post Feed (around 1280px wide by 500 px).
I notice that all my individual (single) Blog posts in the Social Learner theme is 624px wide and around 420 high. Can I change this somehow?
Best regards,
MichaelMarch 13, 2016 at 8:19 am #62777@mln83I have tried to change options in (see below picture). Small / Big only changes the height but the image dimensions remain the same (624px wide).
Best regards,
MichaelMarch 13, 2016 at 8:53 am #62783@mln83Here is an example of the associated code from a “single” post:
background-image: url(/wp-content/uploads/2016/02/PI-day-624x101.png);
background-image: url(/wp-content/uploads/2016/02/interview_1455870962-624x416.jpg);
As you will notice from this code both single post images are constrained to a relatively low-quality 624px width.
Best regards,
MichaelMarch 17, 2016 at 6:39 am #63573@mln83I will just bump this one in case it was missed.
March 18, 2016 at 10:12 am #63838@
AnonymousHi @mln83
boss/single.php
line 30$id = get_post_thumbnail_id($post->ID, 'medium');
You can replace it with large or full as per your requirement
The default image sizes of WordPress are ‘thumbnail’, ‘medium’, ‘large’ and ‘full’ (the size of the image you uploaded).$id = get_post_thumbnail_id($post->ID, 'large');
To keep your edits safe, you can copy single.php to child then edit it.
Regards
Varun Dubey
- The question ‘Featured Image Size’ is closed to new replies.