hello,
I think find what i was looking for for scrolling text in https://kriesi.at/support/topic/need-section-of-text-to-scroll/
but i can’t do it.
there is something i don’t do well can you please correct me ?
if i follow http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
all is ok, working well.
if I take your exemple :
div.avia_textblock.scrolling {
height: 340px;
overflow: hidden;
overflow-y: visible;
}
I first give a name to element : lfk-textblock
then doesn’t work if I put in quick css
div.avia_lfk-textblock.scrolling {
height: 340px;
overflow: hidden;
overflow-y: visible;
}
try lot of combinaison but can’t find solution…
thanks in advance for help !
Hey!
You can’t rename avia_textblock, that’s the class Enfold assigns to that element. You can put multiple classes in the CSS field though – http://screencast.com/t/GJFapudRzM
Then the CSS code would be:
.div.avia_textblock.scrolling.another_class {
height: 340px;
overflow: hidden;
overflow-y: visible;
}
Best regards,
Josue
hello
doesn’t work. with :
.div.avia_textblock.scrolling.another_class {
height: 340px;
overflow: hidden;
overflow-y: visible;
}
but ok with :
div.avia_textblock.scrolling {
height: 340px;
overflow: hidden;
overflow-y: visible;
}
thanks – solved