Page 1 of 1

photo.gallery logo effects

Posted: 10 Mar 2021, 01:36
by TristanJo
Like the logo of photo.gallery, how can I make the circle(Rectangle) rotate?
logo.png
logo.png (17.04 KiB) Viewed 2702 times
text logo? of image?

Re: photo.gallery logo effects

Posted: 10 Mar 2021, 03:32
by mjau-mjau
That's just text "X3" with custom CSS to add round background. I can provide the CSS, but I can't explain or teach you how it works.

Settings > Custom > Custom CSS:
Code
a.logo {
    font-size: 2em
}
a.logo>.m1 {
    width: 1.75em;
    padding: .375em 0;
    text-align: center;
    background: #78a642;
    color: white;
    border-radius: 100%;
    letter-spacing: 0;
    font-weight: 300
}
.menu-absolute a.logo>.m1 {
    background: rgba(255,255,255,0.9);
    color: #78a642
}

Re: photo.gallery logo effects

Posted: 10 Mar 2021, 05:14
by TristanJo
mjau-mjau wrote: That's just text "X3" with custom CSS to add round background. I can provide the CSS, but I can't explain or teach you how it works.

Settings > Custom > Custom CSS:
Code
a.logo {
    font-size: 2em
}
a.logo>.m1 {
    width: 1.75em;
    padding: .375em 0;
    text-align: center;
    background: #78a642;
    color: white;
    border-radius: 100%;
    letter-spacing: 0;
    font-weight: 300
}
.menu-absolute a.logo>.m1 {
    background: rgba(255,255,255,0.9);
    color: #78a642
}
Thx~~~ :kissing_heart::thumbsup: