Hi,
Please see my home page:
1. How can I reduce the height of the fullwidth easy slider? I presumed that the inserted image drives this, but even if I change image height to like 1500x125px, the slider height stays the same?
2. How can I alter the button size to make them bigger?
thanks
Ustadeus
Hey ustadeus,
1. How can I reduce the height of the fullwidth easy slider? I presumed that the inserted image drives this, but even if I change image height to like 1500x125px, the slider height stays the same?
You can use this code and add it to Quick CSS (located in Enfold > General Styling):
ul.avia-slideshow-inner {
max-height: 125px;
}
This will affect the sliders globally, to make this specific you need to use custom css class: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and add a class on the slider example home-slider and you will add this css code instead:
.home-slider ul.avia-slideshow-inner {
max-height: 125px;
}
2. How can I alter the button size to make them bigger?
You can use this code and add it to Quick CSS:
.avia-button.avia-size-x-large {
padding: 32px 80px 30px;
}
Let us know if it helps :)
Best regards,
Nikko