Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #729883

    View post on imgur.com

    how can i bring the text to the top of the color section and the button to the bottom. it is a 100% high color section. and how can i disable the text at mobile view only?

    thanks al lot :)

    #729961

    Hey diefleischerei,

    To pust the text to the top and button to the bottom Please enable custom css class name by placing a code snippet to your functions.php file as mentioned in this link http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Then give the text box a class name “pust-top” and the button element “push-down”

    .pust-top {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .push-bottom {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    To hide the text only in mobile add the below css to Quick css section and give the text box an additional class name “only_desktop”

    Note : The text box will have two class names “pust-top only_desktop” and there should be a space to separate the class names

    /*Show only in mobile or desktop*/
    
    @media only screen and (min-width: 769px) {
    .only_mobile { display: none !important; }}
    
    @media only screen and (max-width: 768px) {
    .only_desktop { display: none !important; }}

    Hope this helps :)

    Best regards,
    Vinay

    #730008

    Really cool. thank you very much. can i bring the button 20px up? and is there a way to add 80% transperency to the yellow button on “mouse off”. Thanks :) Greetings.

    #730393

    Hi,

    It appears you have managed to add the transparency on mouseover.

    To place the button 20px from bottom please change the bottom value from 0 to 20px in “push-bottom”.

    So your code should look something like :

    .push-bottom {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }

    Best regards,
    Vinay

    #730463

    Cool Thank you. Closed.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘color section’ is closed to new replies.