If - for some reason you need above code - you should define for what viewport they apply. As for now they break layout for small screens.
- Instead of saying: 'it's not working', explain the problem in detail.
- Screenshots with the URL visible in them and the problem marked are more than welcome.
- Tell us how to replicate the problem, we can't fix it if we can't find it.
- Make sure that your site/server meets JomSocial System Requirements
- Make sure to setup JomSocial Cron Job
- Always provide us with access details to the backend and ftp. We need it to debug problems.
- If you have a similar problem, but a solution you found isn't working, open a new thread instead of 'merging' with an existing one.
- Use the "Thank You" feature on any post that helped you
Ah, I see. I was able to accomplish the custom width parameters for desktop screens only from 800px wide to full-screen and to disregard the custom widths when the screen is below 800px or any mobile device (normal template responsiveness). I did so with the following media queries and viewport parameters. Thanks for pointing me into the right direction. :)
MEDIA QUERIES attempted:
@media screen and (min-width: 800px) {
.joms-sidebar {
float: right;
padding-right: 0;
width: 32.1966%;
}
}