Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change font-size when collapsed (smartphone) #44

Closed
MN83GH opened this issue Jan 29, 2015 · 1 comment
Closed

Change font-size when collapsed (smartphone) #44

MN83GH opened this issue Jan 29, 2015 · 1 comment

Comments

@MN83GH
Copy link

MN83GH commented Jan 29, 2015

Hi!

I wonder if it's possible to change font-size, only when you are in smartphone mode (320 to 800px)

Any tips or tutorial?

Thank you guys

@designarti
Copy link

Thats a CSS issue and could be solved by adding a media query into your css file, usually at the end:

@media all and (max-width: 800px) {
    ul.slimmenu li {
        font-size: 14px;
    }
}

This is probably what you need.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants