Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1240685

    Hi,

    I am trying to align the right blue column to the bottom of the container it is in. I have tried various ways but i can’t seem to get it right.

    Does anybody know how i can achieve this?

    Thanks in advance!

    #1240778

    Hey Rhodo,

    Add this to quick css:

    .avia-builder-el-4{
    position:absolute!important;
    bottom:0px!important;
    right:0px!important;
    }

    Best regards,
    Jordan Shannon

    #1241164

    Hi Jordan,

    Thanks for the css solution! It worked like a charm!

    I also had to add position:relative; to the outer container <div> to make it work. Also added a media query to only target screens above 767px:

    
    @media only screen and (min-width: 767px)  {
    	
    	.entry-content-wrapper.clearfix {position:relative;}
    
    	.avia-builder-el-4 {
    		position:absolute!important;
    		bottom:0px!important;
    		right:0px!important;
    	}
    	
    }
    
    #1241357

    Hi XV,

    We’re glad to hear that :)
    Let us know if you need further assistance.

    Best regards,
    Nikko

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.