Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #329362

    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 !

    • This topic was modified 9 years, 6 months ago by Luc.
    #329886

    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

    #330475

    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

    • This reply was modified 9 years, 6 months ago by Luc.
Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘help for text to scroll’ is closed to new replies.