Tagged: slider fix
- This topic has 5 replies, 5 voices, and was last updated 9 years, 1 month ago by Theme Horse Support Team.
-
AuthorPosts
-
September 18, 2015 at 1:05 pm #28435support7Participant
Hi
I’m trying to increase the slider image width to 1800.
I read in a post from around 5 months ago that:
*****
This feature is not available in our theme. You have to make code customization. Go to theme folder -> functions.php on line no 143 and 144 you will see this code.add_image_size( ‘slider-narrow’, 1038, 460, true ); // used on Featured Slider on Homepage Header for narrow layout
add_image_size( ‘slider-wide’, 1400, 460, true ); // used on Featured Slider on Homepage Header for wide layout
change you slide image size according to your needs. But create a child theme before making any changes on it. After changing the slider size install regenerate Thumbnail plugins and regenerate the images.
*****
which I’ve done. I’m using functions.php in a child theme, and I am regenerating the images. At the moment I’ve just got one image in the slider – size 1800 by 564, but it’s still displaying at 1400.Help appreciated – thanks
September 19, 2015 at 2:33 am #28471Theme Horse Support TeamKeymasterHi support7,
Yes exactly if you like to change the slider image size then go to functions.php and you will find this code
add_image_size( ‘slider-narrow’, 1038, 460, true ); // used on Featured Slider on Homepage Header for narrow layout add_image_size( ‘slider-wide’, 1400, 460, true ); // used on Featured Slider on Homepage Header for wide layout
change you slide image size according to your needs. But create a child theme before making any changes on it. After changing the slider size install regenerate Thumbnail plugins and regenerate the images. If your slider doesnot work then first make a direct change in the code.
add_image_size( ‘slider-wide’, 1400, 460, true );
to
add_image_size( ‘slider-wide’, 1800, 564, true );
and then regenerate thumbnails. There may be something going wrong on the child theme. Then your new slider size will be 1800X564. One thing upload the bigger image size than this ( 1800X564) size.Thank you!
September 29, 2015 at 4:11 pm #28845jcallisteParticipantPlease take a look at our Attitude slider here http://www.callistecomm.com. Why are the featured images centered by default and not left justified? How do we change that? The overlay text boxes block the images. The Theme Horse demo preview shows images next to the overlay text boxes not over the images. How do we fix this?
FYI we are considering paying the annual fee but need to know the themes will work and there is support for the themes before we spend.
Thank you.
September 30, 2015 at 5:32 am #28860Theme Horse Support TeamKeymasterHi Jcalliste,
You have uploaded a square images in the featured slider.
You have to add the image with recommended size.Anyways you can use the CSS code to align it into the left. Go to Appearance -> Customize/Theme Options -> Design Options -> Custom CSS paste the following CSS code and Click on save all changes button:
.featured-slider figure { text-align: left; }
Thank you!
October 1, 2015 at 12:13 pm #28921Marvin.mintonParticipantThanks for the resolved query.
October 1, 2015 at 2:56 pm #28933Theme Horse Support TeamKeymasterYou Welcome! 🙂
-
AuthorPosts
- You must be logged in to reply to this topic.