I need remove the text from the slider and only use images there, how can this be done? Also, can the number of items in the slider be increased to say 8 images? Thank you, Val Saidor
Hello, 1.For your first issue Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .slide .entry{ display:none; } .slide .images img { width:100%; } .slide .images{ margin-left:10px; } @media only screen and (max-width: 960px) and (min-width: 768px){ .slide .images img { width:80%; } } @media only screen and (max-width: 767px){ .slide .images img { width:400px; margin-right: 348px; } } @media only screen and (max-width: 480px) { .slide .images img { width:200px; } .slide .images { margin-left: 35px; } } 2. Unfortunately there isn't a way to do that with our theme unless you custom code something up. Sorry.