Skip to main content
Topic: Show info under profile (Read 1965 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Show info under profile

5+ Most Amazing Eco-Friendly Kitchen Products to Buy on Amazon

Whether it's a typical day or Earth Day, everyone, especially parents, should be more conscious about decreasing the number of disposable items they use in their daily lives as a result of numerous benefits that awareness brings. After all, our kids will inherit the Earth, and we do not want to leave them with the massive mess we made.

Below, we've put together some longer lasting products. They have received the best reviews ever and can replace the ones you often get rid of at the end of the kitchen clean-up.

Find More Info: Reviews on products TheKingLive.com

1. Klean Kanteen Steel Straws



If you’re trying to cut down on waste, you may not be purchasing paper straws, but are on the hunt for dishwasher safe, reusable ones. One of them should be Klean Kanteen straws with the silicone tops. They come with a little brush that is excellent for cleaning them, mainly if you sometimes use the straw for smoothies.

2. Bamboo Towels

Paper towels are considered one of the most used products in kitchens. We hope you can reduce the number of sheets that go in the garbage by replacing the standard paper towels with these top reviewed bamboo ones.

They come on a roll and can be torn off like the towels made from paper, but they are far stronger and washable. Remember, you can reuse them multiple times; one roll should last around six months!

See Also: https://pawoo.net/@thekinglive

3. Reusable Microfiber Cleaning Cloth Set

Another attempt to decrease your family's consumption of paper towels is buying these microfiber cleaning cloths. It does work!

Unlike with the above bamboo towels, you won’t be confused about whether these clothes are reusable or not. Just throw them in your washing machine with jeans or towels. You will also love that different colors are available to keep your floor cloths, bathroom cloths, and kitchen cloths separate.

4. Eco-Friendly Reusable Food Wraps

They are worth it! If you’re among those trying to reduce plastic wrap in the kitchen or having a preschooler who loves to take one bite out of anything, these beeswax wraps are considered a fantastic eco-friendly and reusable alternative. You can find a few trusted brands out there.

5. AmazonBasics Silicone Baking Mat



You may have used a multitude of parchment paper in your kitchen for various things, from heating frozen fries to baking cookies. But these silicone baking mats will sure change the way you bake, making that process less wasteful.

6. MIRA Lunch, Food Jar, Vacuum Insulated Stainless Steel Lunch Thermo

You will love this vacuum insulation thermos. The container is triple-walled and made from stainless steel. It can keep your healthy foods cold or hot. It is an excellent alternative to the disposable plastic food containers that many of you may have rattling around in your kitchen drawers. Another plus is that this container is leak-proof, making it safe to put in your backpack.

Picked For You: Top Best Products In The World - Easily To Choose The Product For your Demand

Conclusion

When it comes to the kitchen, we bet many eco-friendly swaps are seamlessly available for you to pick from. As it is time to ditch the plastic wrap and paper towels, consider some of the best Amazon products mentioned above to make being eco-friendly much easier.
Last Edit: August 18, 2022, 03:39:49 am by tommyroland

Re: Show info under profile

Reply #1

Hi and welcome to Elkarte!

As far as I know there is no way to display that info without and add-on or code edits. Elkarte shows all that information on mouse over a profile. From ACP you can choose where to display every single custom field.

This is what I have on my forum, and I prefer this behaviour since I find it much "cleaner" in terms of design, instead of showing all that stuff under every avatar.

sorry for my bad english

Re: Show info under profile

Reply #2

Technically, if you don't mind the positioning, you could tweak a bit the CSS to have them show, above the avatar, though.
Something along the lines:
Code: [Select]
.poster .menulevel2 {
    display: block !important;
    position: static;
    width: auto; /*or maybe 100%, not sure */
}
[code]

Would be the basics, then you have to tweak some other styles to make it work the way you want.
Bugs creator.
Features destroyer.
Template killer.

Re: Show info under profile

Reply #3

As a basic implementation, this will work:

Code: [Select]
@media screen and (min-width: 33.75em) {
.poster {
        display: flex;
        flex-direction: column;
    }
    .poster .listlevel1.subsections {
        order: 4;
    }
    .poster .listlevel1:hover > a::after {
        display: none !important;
    }
    .poster .listlevel1.subsections > ul {
        display: block !important;
        position: static;
        max-width: 90%;
        margin: 0 auto 4px;
        padding: 0 !important;
        text-align: center !important;
        border: solid #ddd;
        border-width: 1px 0;
        box-shadow: none;
        opacity: 1 !important;
    }
    .poster .listlevel1.subsections > ul > li {
        width: 100%;
    }
    .poster .listlevel2 > ol > li {
        display: inline-block;
    }
    .poster .listlevel1.poster_avatar {
        order: 1;
    }
    .poster .listlevel1.icons {
        order: 2;
    }
    .poster .listlevel1.membergroup {
        order: 3;
    }
    .poster .listlevel1.poster_online {
        order: 5;
    }
}

That is done as an override of this site's code, so should work if just added to custom.css. It will automatically revert to the standard display on small screens.
Last Edit: August 28, 2021, 08:09:33 pm by Antechinus
Master of Expletives: Now with improved family f@&king friendliness! :D

Sources code: making easy front end changes difficult since 1873. :P