• 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

Mobile Hide

Regenbogenbruecke

Chevereto Member
In English


Hello Have a question for u Logo. Hintergund mobile Hide When I go to the page with the phone.
Have it under the Dashboard settings / settings / Theme
Separate CSS code.

So tried.

/ * Logo * /
media (min-width: 801px) {
.top-bar-logo,
.top-bar-logo img {
}

Likewise, I'd like that the background is ausgebledet if I plan zugreife Mobile that appears only a color code

Have also tried this but it does not get out

media (min-width: 801px) {
# home-cover {
background-image: url ("http://pictures-room.de/content/images/system/default/home_cover.jpg");
}

Where to find the style.css FILES for the side of the logo and the background that you could then change it on the css file

Rudolfo I might also give an access that you can watch it yourself.

Greeting Kay

-----------------------------------------------------------------------
In Deutsch

Mobile Ausblenden

Hallo Habe eine Frage zum Logo u. Hintergund Mobil Ausblenden, wenn ich mit dem Handy auf die Seite gehe.
Habe es unter der Einstellungen Dashboard / Einstellungen / Theme
Eigener CSS-Code.

So ausprobiert.

/* Logo */
@media (min-width: 801px) {
.top-bar-logo,
.top-bar-logo img {
}

Genauso hatte ich gerne das der Hintergrund ausgebledet wird wenn ich Mobile drauf zugreife, das nur ein Farbcode angezeigt wird

Habe auch dies ausprobiert bekomme es aber nicht hin

@media (min-width: 801px) {
#home-cover {
background-image: url("http://pictures-room.de/content/images/system/default/home_cover.jpg");
}

Wo findet man die style.css datein für die Seite für das Logo und dem Hintergrund das man es dann über die css Datei ändern könnte

Rudolfo ich könnte dir auch einen Zugang geben das du es dir anschauen kannst.

gruss Kay
 
The Chevereto switchers are based on prefixed classes, like .phone or .desktop. Try using something like:

Code:
.phone .something { display: none; }
 
Back
Top