Support Forum

Please note that this forum is only available to you in read only mode. In order to contribute to this conversation you will need to renew your subscription.

flexbox

zentoolsIf you use Zentools please post a review at the Joomla! Extensions Directory.

Hi - I've been playing around with flex box to horizontally align rive logos at the bottom of this page www.bizzybounce.co.uk/newsite.

I had it working more or less cross browser but I've broken something and now it won't work in firefox.

This is the css I'm using:

.tradelogos
{
display:flex;
display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
display: -ms-flexbox; /* TWEENER - IE 10 */
display: -webkit-flex; /* NEW - Chrome */
flex-direction:row;
justify-content:space-around;
flex-wrap:wrap;
flex-basis: auto;
-webkit-flex-direction:row;
-webkit-justify-content:space-around;
-webkit-flex-wrap:wrap;
-webkit-align-content: stretch;
}

Any idea what I've done wrong?

Thanks

Ian
  • ianpanorton's Avatar
  • ianpanorton
  • 6 Month Developer
  • 1258 posts
  • 3 Thanks
  • Karma: 7
Last Edit: 8 years 8 months ago by ianpanorton. Reason: fat fingers
The administrator has disabled public write access.
Does this work any better?


.tradelogos{
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
justify-content:space-around;
}

Re-ordering the elements - prefixes first

Cheers
Paul
  • manh's Avatar
  • manh
  • Moderator
  • 45248 posts
  • 2106 Thanks
  • Karma: 603
The administrator has disabled public write access.
Thanks Paul - instant fix :-)

Best wishes

Ian
  • ianpanorton's Avatar
  • ianpanorton
  • 6 Month Developer
  • 1258 posts
  • 3 Thanks
  • Karma: 7
The administrator has disabled public write access.
No problem - you're welcome

Cheers
Paul
  • manh's Avatar
  • manh
  • Moderator
  • 45248 posts
  • 2106 Thanks
  • Karma: 603
The administrator has disabled public write access.

zentoolsIf you use Zentools please post a review at the Joomla! Extensions Directory.

Happy Campers