Hello @ipgill
You may want to clear you cache to check if that solves any problems with the styles. However, if clearing the cache doesn’t solve anything, here is some CSS that may help you. The CSS adds arrows to the portfolio buttons like on the home page.
button.slick-next.slick-arrow {
width: 35px;
height: 75px;
margin: -37px 0 0;
display: block;
background: url(/wp-content/themes/virtue/assets/img/slide_direction.png) no-repeat 0 0;
background-position: 100% 0;
position: absolute;
top: 50%;
z-index: 10;
cursor: pointer;
text-indent: -9999px;
ms-filter: "alpha(opacity=00)";
filter: alpha(opacity = 00);
-moz-opacity: 0;
-khtml-opacity: 0;
opacity: 0;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
transition: all .3s ease;
}
button.slick-prev.slick-arrow {
width: 35px;
height: 75px;
margin: -37px 0 0;
display: block;
background: url(/wp-content/themes/virtue/assets/img/slide_direction.png) no-repeat 0 0;
position: absolute;
top: 50%;
z-index: 10;
cursor: pointer;
text-indent: -9999px;
ms-filter: "alpha(opacity=00)";
filter: alpha(opacity = 00);
-moz-opacity: 0;
-khtml-opacity: 0;
opacity: 0;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
transition: all .3s ease;
}}
The slider on the home page looks like it is working as expected. You mentioned you don’t want the bullets at the bottom. You can likely hide it with the following CSS.
ol.flex-control-nav.flex-control-paging {
display: none;
}
Add the CSS, clear your cache, and let me know if this helps you or if you have additional questions.