css logo shrink

Solutions on MaxInterview for css logo shrink by the best coders in the world

showing results for - "css logo shrink"
Leni
29 Nov 2019
1/*--SHRINKING LOGO--*/
2/*--New class when sticky is turned on 'elementor-sticky--effects'--*/
3/*--give the logo image a class called 'sticky-logo' --*/
4
5.elementor-sticky--effects .sticky-logo img {
6	width: 120px!important;/*--edit the pixels to change to desired shrinking size--*/
7}
8
9.sticky-logo img {
10	transition: .5s all ease-in-out;
11}
12
13
14@media screen and (max-width: 767px) {
15    .elementor-sticky--effects .sticky-logo img {
16	width: 90px!important;/*--edit the pixels to change to desired shrinking size for mobile--*/
17}
18}