« SpaceHey Forum

Making to so we can have our own mobile theme?

Posted by twiggy

posted

Forum: SpaceHey

I'm not saying to make a mobile app ( but it should be able to make it happen!) but being able to make our own html themes for mobile. It is 100% possible you should be able to have a web theme and a mobile theme using hmtl. You sould be able to switch bwteem them while editing


I noticed that my spacehey theme is very mobile friendly so i hope an hears us out!



Report Topic

3 Replies

Sort Replies:

Reply by Wicycool

posted

idk if this is what youre talking about, but a feature that CSS already has is media query selectors, which you can use to have different styles depending on the screen size! this could let you have different styles or show/hide certain HTML elements on mobile screens :D

so if you wanted a custom theme for mobile (which would be like 600 pixels wide) you could do this:

@media only screen and (max-width: 600px) {
/* put mobile-only css in here */
}
@media only screen and not (max-width: 600px) {
/* put desktop-only css in here */
}

here's a w3schools page about them: https://www.w3schools.com/cssref/css3_pr_mediaquery.php

and if you wanted a preview, you could press F12 on your browser to show developer tools, and then press this button in the top left:

(this is what it looks like on chrome, firefox has something similar in the top right)

then you can change the dimensions and emulate different devices at the top of the page


if you have any questions let me know!! (i'm brand new to spacehey but i've been using HTML and CSS for a long time) :)


Permalink Report Reply

Reply by twiggy

posted



This is very important info for spacehey users! Thank you for sharing, Its nice to know we can make themes that are mobile friendly.

You need to share this around more tbh. a lot of people are complaining about not being able to use spacehey on mobile!


Permalink Report Reply

Reply by kaioss

posted
updated

@Wicycool

THANK YOU SM <3333333

im a little loose with my coding knowledge and the mobile version of my profile was suffering for it so thank you


Permalink Report Reply