• greetings,
    i have problems regarding the featured image. it appears too large on my site i have tried to change it by changing the large thumbnail size on the php function yet it doesnt affect the featured image. is there a possible way to show the full image in a smaller window

    http://abeautifulbody.net/ here is my site so you can understand what i mean

    kindest regards,
    burak

Viewing 8 replies - 1 through 8 (of 8 total)
  • Hello,
    I think you need to use Regenerate Thumbnails plugin to crop image size automatically. it is recommended plugin from Hueman theme.
    [ Signature moderated. ]

    Is that a typo in the tagline of your site?
    spots fitness health

    Thread Starter dantex4

    (@dantex4)

    i installed regenerate thumbnails, it made the image smaller but i want to know weather it is possible to manually adjust the size of the image

    Could try looking for a plugin if you want to choose the crop area for the thumbs: http://wordpress.org/plugins/manual-image-crop/

    Or, to change the actual size of the thumbnail, you need to copy the alx_setup function in functions.php over to a child theme (sample child theme avail in theme options help dropdown) and modify the thumb-large/thumb-medium sizes as you wish.

    Hello Alexander Agnarson,
    I like your hueman theme so much. But I am new in WordPress. I want to make a movie download site. For this I Want to know something about the theme. please help me.
    1. I want to change the featured Image Width-150px and Height-225px.
    2. How to ad a slideshow in header?
    3. Sidebar Item style not preferable. I want to make 2 columns Category. How to do?
    4. want to change Post text color black. But I can’t.
    5. In a post I want to make 3 column which have 2 pictures two sides and a table in middle side.
    6. Need to change sidebar width. Primary about 200px and secondary 150px.

    KittyFlynn

    (@macwillard)

    Or, to change the actual size of the thumbnail, you need to copy the alx_setup function in functions.php over to a child theme (sample child theme avail in theme options help dropdown) and modify the thumb-large/thumb-medium sizes as you wish.

    I tried your suggestion and the featured image on the front page of the blog remained the same size (345 width by 550 height, strangely enough). The original image size is 150×240.

    Perhaps I don’t have the relevant section. This is the code I attempted to change so all width-height ratios were 160, 100:

    /*  Theme setup
    /* ------------------------------------ */
    if ( ! function_exists( 'alx_setup' ) ) {
    
    	function alx_setup() {
    		// Enable automatic feed links
    		add_theme_support( 'automatic-feed-links' );
    
    		// Enable featured image
    		add_theme_support( 'post-thumbnails' );
    
    		// Enable post format support
    		add_theme_support( 'post-formats', array( 'audio', 'aside', 'chat', 'gallery', 'image', 'link', 'quote', 'status', 'video' ) );
    
    		// Declare WooCommerce support
    		add_theme_support( 'woocommerce' );
    
    		// Thumbnail sizes
    		add_image_size( 'thumb-small', 160, 100, true );
    		add_image_size( 'thumb-medium', 160, 100, true );
    		add_image_size( 'thumb-large', 160, 100, true );
    
    		// Custom menu areas
    		register_nav_menus( array(
    			'topbar' => 'Topbar',
    			'header' => 'Header',
    			'footer' => 'Footer',
    		) );
    	}
    
    }
    add_action( 'after_setup_theme', 'alx_setup' );

    Hello,

    Right now in my blog slider showing feature images is this possible i can put different images in the slider instead of feature images, Or is this possible i can put any slider in the blog page.

    Thank You

    Hello,

    I tried to change the size of the featured imagine size in the Theme Functions (function.php) and I got this

    Parse error: syntax error, unexpected ‘)’ in /home/content/p3nexnas03/33/2195733/html/wp-content/themes/hueman/functions.php on line 81

    What can I do? please some help!!

    This is the code I got
    // Thumbnail sizes
    add_image_size( ‘thumb-small’, 160, 160, true );
    add_image_size( ‘thumb-medium’, 520, 245, true );
    add_image_size( ‘thumb-large’, 720, 340, true );

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘featured image size’ is closed to new replies.