Skin issue when browsed from smartphones
2 posters
Page 1 of 1
Skin issue when browsed from smartphones
Hi
So I'm working on this new skin. It all looks nice and organized when I use my Laptop to view it. However, when I use my smartphone it all looks out of place, half the things doesn't appear the way they should do.
Is there a way to have the way a forum theme is displayed to be exactly as it does when browsed from a computer?
So I'm working on this new skin. It all looks nice and organized when I use my Laptop to view it. However, when I use my smartphone it all looks out of place, half the things doesn't appear the way they should do.
Is there a way to have the way a forum theme is displayed to be exactly as it does when browsed from a computer?
Re: Skin issue when browsed from smartphones
Hi @Anzo,
Unfortunately this comes down to the capabilities of the device and its browser. Most things will render different on mobile than they do on desktop since they have less space to display the website. The only thing you could do is use Media Queries to adjust the content for smaller devices.
Unfortunately this comes down to the capabilities of the device and its browser. Most things will render different on mobile than they do on desktop since they have less space to display the website. The only thing you could do is use Media Queries to adjust the content for smaller devices.
Re: Skin issue when browsed from smartphones
I have no experience with media query and lack time to learn about it.
Is it OK if i just post here when I'm done with the skin and then point out the areas/CSS that needs to have media query applied on?
Is it OK if i just post here when I'm done with the skin and then point out the areas/CSS that needs to have media query applied on?
Re: Skin issue when browsed from smartphones
It's actually pretty easy. If you want to simplify it you can go by screen width only.
For example, the following styles will take affect if the screen width is at or below 320px.
You just place your mobile rules inside the media query rule.
For example, the following styles will take affect if the screen width is at or below 320px.
- Code:
@media (max-width:320px) {
body {
background:red;
}
}
You just place your mobile rules inside the media query rule.
Similar topics
» Skin Colors Change issue
» Forumotion Browser Skin Issue
» Problem issue to restore my theme & skin on my forum
» Smartphones discussion
» How can i make "Leave a reply" for guests browsed like this?
» Forumotion Browser Skin Issue
» Problem issue to restore my theme & skin on my forum
» Smartphones discussion
» How can i make "Leave a reply" for guests browsed like this?
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum