Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Baden

    (@baden03)

    Normally, it would be done like so:
    HTML

    <div class="box">
       <div class="content">
           content goes here
       </div>
    </div>
    ?????????????????????

    CSS

    .box {
        border: 1px red solid;
        height: 100px;
        position: relative;
    }
    
    .content {
        position: absolute;
        bottom: 0;
        right: 0;
    }

    Do you think you can figure out the rest from here?

    Thread Starter sansibario

    (@sansibario)

    Thank you for the quick reply. I checked this out and indeed the text is at the bottom, but this “position: absolute;” causes a conflict with wordpress. None of the page elements are were they belong. All pages will be affected, also pages that do not use Column-Matic
    Any idea?
    Kind regards

    Plugin Author Baden

    (@baden03)

    Yes, use a different class name than “content”. The class name content is most likely already in use by your theme.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Vertical Align’ is closed to new replies.