How to make the category logo left aligned?

Hi everyone :hugs:

How can I do like that ?

Ekran görüntüsü 2024-04-16 154057

This is blizzard’s forum site. I looked for CSS codes there but couldn’t find them.

Can I have such procedures done only by paying a fee, or can someone who has done this before share it with me?

I did :slight_smile:

You make changes according to your site.
For example margin-left to margin-left: 5.2rem;

.categories-list .category .category-logo.aspect-image {
    margin-top: -1.2em;
}

.categories-list .category .category-logo.aspect-image img {
    width: 60px;
}

.category-logo.aspect-image {
    float: left;
    margin: .33em 0.7em 2em 0;
}

 .category-name:first-child {
    margin-left: 4.9rem !important;
    -webkit-margin-left: 3rem !important;
    -moz-margin-left: 3rem !important;
}

.category-list .subcategories {
    margin-left: 4.7rem;
}
2 Likes