Toggle navigation
Webriti Support Forum
Categories
Discussions
Activity
Sign In
Home
›
WordPress Premium Themes
›
Quality
Slider Width Issue
handytaxguy
September 2015
edited September 2015
in
Quality
Is there any way to make the slider image width 1980px to fit wider screen sizes?
It seems like the default slider width for quality about 1600px and it does not adjust to wider screen sizes?
Comments
akhilesh
September 2015
Hi
To increase slider width size .
For this
1 Open the
resize_image.php
file (located in theme folder << function folder << resize_image folder << and find the file .)
2 Then find the below line of code on line no 5 .
add_image_size('home_slider',
1600,600
,true);
3 Then replace it with below line of code .
add_image_size('home_slider',
2100,600
,true);
Change size as your need.
Then again add the slider image .
Thanks
Akhilesh
handytaxguy
September 2015
Thanks, I try that.
akhilesh
September 2015
Hi Dear
Did your issue resolve ?
Thanks
akhilesh
September 2015
Hi @
handytaxguy
Tell us did your issue resolve or not .
SO that we can proceed further .
Thanks
boswebhosting
September 2015
For me, adding this as an custom css snippet worked!
Customizing>> Header settings>> Custom CSS
add:
.flexslider .slides img {
width: 100% !important;
}
This discussion has been closed.
Comments
Customizing>> Header settings>> Custom CSS
.flexslider .slides img {