A few notable, useful worth-sharing tips & tricks for Sharkey users. You may also suggest any to be added here.
Sharkey works best via it's web UI frontend. Sometimes, this may be uncomfortable on mobile or generally lower-end devices.
You have a few options to try out:
In the normal UI view, Sharkey has a permanent sidebar that holds widgets on the right side of the UI, which cannot be disabled. It, however, is not required in any way for normal usage, so we may use custom CSS on the client in order to remove it.
Simply go to your custom CSS settings and add the below snippet:
{% highlight css %} [class^="universal-widgets-"] { display: none; } {% endhighlight %}Once applied and refreshed, the widgets sidebar should now be gone. Note that this won't effect the sidebar that appears on mobile (opened through a button on the navbar) so it's safe to use this CSS on mobile as well, in the case of client settings syncing.