What's new
HTML Forums | An HTML and CSS Coding Community

Welcome to HTMLForums; home of web development discussion! Please sign in or register your free account to get involved. Once registered you will be able to connect with other members, send and receive private messages, reply to topics and create your very own. Our registration process is hassle-free and takes no time at all!

Need Custom CSS help with WP theme.

Siim518

New member
How can i change the main slide pictures size? The pictures are too big, i would like them to be half size. The theme dosent have an option to select the size manually,so i must change it by code. Theme has a custom CSS option, where i can paste the code and it changes the pictures size then, i tryed this code ".featured-slider.slick-initialized.slick-slider { width: 50%; margin: 0 auto; } "
It only changes the width of the image, how can i put the width to auto and change the height instead?

Website: http://majahaldur.ee
 
I think:

.featured-slider.slick-initialized.slick-slider {height 50%; width: auto; margin: 0 auto;}

Just try this one.
 
Back
Top