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.

scale transition logo to fixed

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

In the buildr template I'm using, when shifting to affixed, I would like to scale the logo as it moves to the left. Where is your current transition applied? In css or in deeper code?
  • blueshift's Avatar
  • blueshift
  • 6 Month Developer
  • 2579 posts
  • 78 Thanks
  • Karma: 26
Last Edit: 7 years 7 months ago by blueshift.
The administrator has disabled public write access.
It must be Friday.... anyway, seem to have hacked my way to a css transition solution.
  • blueshift's Avatar
  • blueshift
  • 6 Month Developer
  • 2579 posts
  • 78 Thanks
  • Karma: 26
The administrator has disabled public write access.
#logo .mod-izzy-logo {
margin: -30px 0px;
transform: scale(1, 1);
transition: transform .75s ease-out 0s;
}

ah thanks - I must be tired - I was struggling with this one

Cheers
Paul
  • manh's Avatar
  • manh
  • Moderator
  • 45248 posts
  • 2106 Thanks
  • Karma: 603
The administrator has disabled public write access.
FBO others, for the fixed nav reduction, I used (with a module class suffix)

.zen-nav-fixed .mod-izzy-logo img {
margin: 0px;
transform: scale(.7, .7);
transition: transform .75s ease-out 0s;
}
  • blueshift's Avatar
  • blueshift
  • 6 Month Developer
  • 2579 posts
  • 78 Thanks
  • Karma: 26
The administrator has disabled public write access.
The following user(s) said Thank You: manh
Thanks again :)
  • manh's Avatar
  • manh
  • Moderator
  • 45248 posts
  • 2106 Thanks
  • Karma: 603
The administrator has disabled public write access.
Enjoy your pale ale :)

Cheers
Paul
  • manh's Avatar
  • manh
  • Moderator
  • 45248 posts
  • 2106 Thanks
  • Karma: 603
The administrator has disabled public write access.
The following user(s) said Thank You: blueshift

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

Happy Campers