Tagged: x
-
AuthorPosts
-
May 6, 2016 at 2:51 pm #979208
NicholasParticipantI’m attempting to achieve this effect (in my screenshot) in which buttons stay centered at the bottom of columns even as device width changes. What’s the best way to do this?
URL and login credentials to follow
May 6, 2016 at 2:52 pm #979210
NicholasParticipantThis reply has been marked as private.May 6, 2016 at 11:41 pm #979782
RadModeratorHi there,
Thanks for writing in.
First, you should remove this from inline CSS,
width:20% !important;You should use @media and CSS if you wish to apply the width. Adding it to inline style will restrict its size while not being responsive. For example,
@media ( min-width: 980px ) { .x-btn.uniform-button { width:20% !important; } }Then just add uniform-button to your button’s class input.
Then same to the text content, you can use min-height to push the button aligned together.
@media ( max-width: 979px ) { .x-text.uniform-text { min-height: 600px; !important; } } @media ( max-width: 767px ) { .x-text.uniform-text { min-height: 0px; !important; } }Then just add uniform-text to the text’s class input.
Hope this helps.
May 7, 2016 at 5:18 pm #980401
NicholasParticipantFixed my issue. Thanks for the reply
May 8, 2016 at 1:13 am #980740
Rue NelModeratorYou are most welcome!
If you need anything else we can help you with, please let us know. -
AuthorPosts
- <script> jQuery(function($){ $("#no-reply-979208 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>
