• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space
  • 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