Hi ??
Sorry marannang, I didn’t see your question! Actually, I did some others changes, you can find them below.
swartzsports, you have to access you hosting with an FTP client and go to this folder /wp-content/themes/wp-fanzone/css/ There you will find the slider.css file. Download it, edit it and upload it to the same folder, overwriting the old file.
Here are all (I hope) the changes you have to make.
Go to wp-fanzone/css/slider.css and
1) add this
max-height: 423px !important;
after this line
.pgwSlider .ps-current {
2) substitute this
ul.pgwSlider > li img, .pgwSlider > ul > li img {
width: 100%;
min-height: 100%;
display: block;
}
with this
ul.pgwSlider > li img, .pgwSlider > ul > li img {
min-width: 100%;
min-height: 100%;
display: block;
}
3) substitute this
@media (min-width: 481px) {
ul.pgwSlider > li:first-child, .pgwSlider > ul > li:first-child {
width: 100% !important;
}
ul.pgwSlider > li, .pgwSlider > ul > li {
width: 48% !important;
float:left;
margin-bottom:12px;
}
}
with this
@media (min-width: 481px) {
ul.pgwSlider > li:first-child, .pgwSlider > ul > li:first-child {
width: 100% !important;
max-height: 135px !important;
}
ul.pgwSlider > li, .pgwSlider > ul > li {
width: 48% !important;
float:left;
margin-bottom:12px;
max-height:132px !important;
}
}