• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.
  • Chevereto Support CLST

    Support response

    Support checklist

    • ⚠️ Got a Something went wrong message? Read this guide and provide the actual error. Do not skip this.
    • ✅ Confirm that the server meets the System Requirements
    • 🔥 Check for any available Hotfix - your issue could be already reported/fixed
    • 📚 Read documentation - It will be required to Debug and understand Errors for a faster support response

I need the right code?

deleted

Chevereto Member
Hello

Am having little problem with my footer i have added sample picture

Picture 1 is how it is now
1.jpg

Picture 2 is how i WANT
logo_homepage.svg.png

please can you tell me what code i have to edit?

i tried it to change the codes but its a mess on mobile version

thanks
 
Last edited:
I did change the css code but its all end up in big mess? i dont know what code to EDIT?

Plus mobile version is proper complete mess?

plesae can you tell me what exect code i need to edit?

thanks
 
Last edited:
In Chevereto you can use sort of media queries to easily switch styles. For example you have a div class="selector":

Code:
.phone .selector {
    color: red;
}
.tablet .selector {
    color: green;
}

Using CSS in phone the text of the elements who use the .selector class will be red while in laptops it will be shown green.

And that works for: .phone, .phablet, .tablet, .laptop, .desktop. All of those classes are added to the HTML so you can hook those CSS selectors to do your custom coding.

In your case you need special rules to enable/disable margin, set 100% width, etc.

Hope it helps.
 
Back
Top