• Resolved JLent14

    (@jlent14)


    Hello,

    I really like this theme. I am working on a site for a client and they have a lot of tattoo photos from an iPhone that are taller than wider photos. When I reduce the image size in Photoshop they show up huge. I am looking to change the size to about 250px X 550px. Is this possible with this theme?

    Also, is it possible to eliminate the Home area to where only the home-slider shows on the Home?

    Thank you, much appreciated.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter JLent14

    (@jlent14)

    I’ve managed to change the slider size to:

    #bootstrap-slider .carousel-inner .img-responsive {
    height: 750px !important;
    width: 700px !important;
    }

    But I have just created a child theme and now my site CSS is gone. The navbar and the widget area is just HTML. Why is this?

    I will take this site off Maintenance Mode so you can look at it:

    https://www.bayareastattoolab.com

    Thank you.

    Thread Starter JLent14

    (@jlent14)

    Managed to fix this. Problem was the style sheet was not pulling from the parent theme. Had to create a functions.php and add:

    <?php
    /**
    * Evolve child theme stylesheet, loading first the parent theme stylesheet.
    */
    function themify_custom_enqueue_child_theme_styles() {
    wp_enqueue_style( ‘parent-theme-css’, get_template_directory_uri() . ‘/style.css’ );
    }
    add_action( ‘wp_enqueue_scripts’, ‘themify_custom_enqueue_child_theme_styles’ );

    ?>

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Taller Slider’ is closed to new replies.