Forum (not ocuk) zooming issue

Soldato
Joined
16 Jun 2013
Posts
5,375
They could just install a mobile template and redirect from htaccess.

There's not too much in the way of documentation out there for kunena some sites have mention of a premium mobile joomla plugin needed.

Edit: or just change the template for a mobile friendly one.
 
Last edited:
Associate
Joined
12 Feb 2003
Posts
897
You can stop the table spilling out of the container down at mobile size by changing the following:

Code:
#Kunena {
	min-width: 700px;
}

Change to

Code:
#Kunena {
	min-width: initial;
}

There is also an inline style on the following element:
Code:
<div class="rt-block" style="width:93%;">

The width value needs to be changed to this:
Code:
<div class="rt-block" style="width:auto;">

These changes will make the table fit in the container (but the content in the table won't all fit at lower sizes, though you could add some media queries to hide certain columns at smaller widths as a hack).

Outside of that, you probably need a proper responsive forum theme.

Hope this helps.

Jim :)
 
Back
Top Bottom