Hi there,
It looks like your theme has some custom Flex Slider styling in the style.css file:
/* Direction Nav */
.flex-direction-nav {
position: absolute;
width: 100%;
top: 50%;
margin-top: -140px !important;
z-index: 8;
}
.slideshow-page .flex-direction-nav {
margin-top: auto !important;
}
.flex-direction-nav li a {
display: block;
position: absolute;
background: #FFFFFF;
width: 40px;
height: 40px;
line-height: 42px;
text-align: center;
margin: -20px 0 0;
top: 50%;
cursor: pointer;
border-radius: 50%;
-moz-border-radius: 50%;
-khtml-border-radius: 50%;
-webkit-border-radius: 50%;
}
.flex-direction-nav li .flex-next {
right: 20px;
}
.flex-direction-nav li .flex-prev {
left: 20px;
}
.flex-direction-nav li .flex-next,
.flex-direction-nav li .flex-prev {
opacity: 0.4;
transition: opacity .25s;
-moz-transition: opacity .25s;
-webkit-transition: opacity .25s;
-o-transition: opacity .25s;
text-decoration: none !important;
}
.flex-direction-nav li .flex-prev:hover,
.flex-direction-nav li .flex-next:hover {
opacity: 1;
}
.flex-direction-nav li .disabled {
opacity: .3;
filter: alpha(opacity=30);
cursor: default;
}
/* Control Nav */
.slideshow.slideshow-page .flex-control-nav {
bottom: 0;
}
.flex-control-nav {
width: 100%;
position: absolute;
text-align: center;
line-height: 50px;
margin-top: -140px !important;
left: 0;
bottom: 2px;
}
.flex-control-nav li {
display: inline-block;
margin: 0px;
padding: 4px !important;
zoom: 1;
*display: inline;
}
.flex-control-nav li:first-child {
margin: 0;
}
.flex-control-nav li a {
display: block;
background: #CCCCCC;
width: 6px;
height: 6px;
line-height: 0;
cursor: pointer;
text-indent: -999em;
border-radius: 3px;
-moz-border-radius: 3px;
-khtml-border-radius: 3px;
-webkit-border-radius: 3px;
}
.flex-control-nav li a:hover {
background: #999999;
}
.flex-control-nav li a.flex-active {
background: #FF0000;
cursor: default;
}
https://www.ziadnammour.com/wp-content/themes/organic_showcase/style.css?ver=4.3.1 | lines 732 – 826
The simplest fix would to remove the code above but watch out if you’re using a slider relying on this code as that will be effected.
Many thanks,
Dave