• 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

Show Mobile Header for All Screen Sizes?

rmallory

Chevereto Member
I'm wondering if there is an easy way to use the mobile header for all screen sizes? I prefer the minimalist aesthetic. Screenshot of the mobile menu attached.

upload_2015-12-13_12-17-54.png

I've tried hiding all of the items in the top bar. For example:

<li id="top-bar-explore" data-nav="explore" class="phone-hide pop-btn pop-btn-auto pop-btn-auto pop-btn-show">

additions in red:

<li id="top-bar-explore" data-nav="explore" class="phone-hide phablet-hide tablet-hide laptop-hide desktop-hide pop-btn pop-btn-auto pop-btn-auto pop-btn-show">

but this hides the "explore" item from the mobile pop out menu as well.

I'm still working on this, but I'm curious if there is an easy fix I haven't thought of?


Cheers,
Raynor
 
Dashboard > Settings > Theme

Add this custom CSS:
Code:
.top-btn-text .btn-text { display: none; }
 
Thanks Rodolfo,

It looks like this hides all of text in the header, but it also hides the text in the dropdown menu which I'd like to keep:
upload_2015-12-13_16-32-43.png

I"m trying to hide everything from the header (both text and icons) except for the menu icon and the login icon. So that the header looks like this in all views:

upload_2015-12-13_16-34-58.png

The random icon can be hid in the dash.

I can hide everything by using the method I showed above, but the elements end up being hidden in the dropdown menu as well (in all views other than mobile, they still show up in the mobile view).

Do you think there is a way around this? It might require some more laborious modifications on my part.

Thank you
 
Code:
.top-btn-text .phone-hide {
    display: none !important;
}
.top-btn-text .icon.tablet-hide.laptop-hide.desktop-hide {
    display: inline-block !important;
}
 
Back
Top