Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #186469

    I thought I read somewhere the best dimensions for the images for this theme… Enfold.
    I would like to set the hight and width in Photoshop… But know I can´t find it ;-)

    And antoher thing – read this in the changelog :-)

    2013 September 18 – Version 2.2

    What changed: The template builder now works fne with wordpress 3.6 Revisions!
    We also added a bunch of language files submitted by our users to make it easier to switch to another language. New languages:

    Danish
    Spanish
    French
    Japanese
    Russian
    Swedish
    Dutch
    German

    But can´t find how to change to for example Swedish :-)

    #186551

    Hey idespiran!

    Where are you going to use the images? Slider? Blog posts? You can find the image sizes on functions.php, find this code:

    $avia_config['imgSize']['widget'] 			 	= array('width'=>36,  'height'=>36);						// small preview pics eg sidebar news
    $avia_config['imgSize']['square'] 		 	    = array('width'=>180, 'height'=>180);		                 // small image for blogs
    $avia_config['imgSize']['featured'] 		 	= array('width'=>1500, 'height'=>430 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['extra_large'] 		 	= array('width'=>1500, 'height'=>1500 , 'crop' => false);	// images for fullscrren slider
    $avia_config['imgSize']['portfolio'] 		 	= array('width'=>495, 'height'=>400 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['portfolio_small'] 		= array('width'=>260, 'height'=>185 );						// images for portfolio 4 columns
    $avia_config['imgSize']['gallery'] 		 		= array('width'=>710, 'height'=>575 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['masonry'] 		 		= array('width'=>705, 'height'=>705 , 'crop' => false);		// images for fullscreen masonry
    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>270);		                 // big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 );						// images for fullsize pages and fullsize slider
    
    //overwrite blog and fullwidth image on extra large layouts
    if(avia_get_option('responsive_layout') == "responsive responsive_large")
    {
    	$avia_config['imgSize']['gallery'] 		 		= array('width'=>845, 'height'=>684 );					// images for portfolio entries (2,3 column)
    	$avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>845, 'height'=>321);		            // big images for blog and page entries
    	$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 );					// images for fullsize pages and fullsize slider
    }

    You can edit wp-config.php, find this code:

    define('WPLANG', '');

    Replace it with:

    define('WPLANG', 'sv_SE');

    You can use this plugin to translate the strings manually. http://wordpress.org/plugins/codestyling-localization/

    Cheers!
    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘image dimensions + change to swedish’ is closed to new replies.