Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #164003
    sorayacge
    Participant

    Thank you for answering my query about the standard size of images for Adventurous pro. The image size should be 800 x 324 but I find this too elongated and it means there are lots of images which I can’t use because they lose their important features at this size.

    Is there a way I can create (higher) images for posts which are not complying with that size guide, without causing any damage to the site speed or anything else for that matter?

    Are the Gallery Images also supposed to be 800×324? I want to use a more square type image…

    I also want to increase the font size throughout the whole site.

    Thank you for your help.

    #164033
    Skandha
    Participant

    @sorayacge: To change the size of the featured image size used you will need create a child theme and do a little bit of customization. Let me know if you are familiar with child theme customization otherwise I suggest you to hire a customizer.

    To increase font size please post in your site URL and let me know which text you want to be updated.

    Kind Regards,
    Skandha

    #164069
    sorayacge
    Participant

    Hi Skandha,
    I am happy to do a bit of customization to the child theme myself.
    Regarding the font size, I was hoping to change the default size across the whole site… Can that be done easily?
    The url is https://exploreandalusia.com
    Thank you,
    Soraya

    #164138
    Skandha
    Participant

    @sorayacge: So first you will need to create a child theme. For that you can use Generate Child Theme Plugin. Install and Activate the plugin. Go to => Dashboard => Generate Child Theme => Select Parent Theme as Adventurous Pro and fill the other fields and click on Generate. Then will create and active the child theme.

    Now, Go to => Child Theme Folder => functions.php and add the following Code.

    function child_theme_setup() {
        add_image_size('featured', 500, 324, true);
    }
    add_action( 'after_setup_theme', 'child_theme_setup', 11 );

    You can alter the image size according to your choice.
    This should change the featured image size on your site.
    Kind Regards,
    Skandha

    #164141
    sorayacge
    Participant

    Hi Skandha,
    Thank you for your answer. I already have the child theme installed and need the code instructions for changing the images. Won’t this only change the featured image size?
    I want to also change the standard image size. Can you give me the instructions so I can change both the feature and the standard image sizes?
    Thanks

    #164232
    Skandha
    Participant

    @sorayacge: Yes, the above code will only change featured image size.
    Go to => Child Theme Folder => functions.php and the following Code.

    function child_theme_setup() {
        add_image_size( 'slider', 1600, 600, true ); //Featured Post Slider Image
    	add_image_size( 'featured', 800, 324, true ); //Featured Image
    	add_image_size( 'small-featured', 400, 267, true ); //Small Featured Image
    }
    add_action( 'after_setup_theme', 'child_theme_setup', 11 );

    You can change the images size of the above.
    Let me know if this helps you out!
    Kind Regards,
    Skandha

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Create custom image sizes & increase font size’ is closed to new replies.