Removing a column for mobile view?

This forum is for all Flare issues related to the HTML5, WebHelp, WebHelp Plus, and Adobe Air Targets
Post Reply
Q2TechWriter
Propeller Head
Posts: 23
Joined: Wed Jan 13, 2016 1:06 pm

Removing a column for mobile view?

Post by Q2TechWriter »

Is there a way to remove the right column from the "othertopics" masterpage for the mobile view? I've removed the side menu for mobile and tablet view, but the content within those pages still only goes about 70% across the screen.

I still want to keep the column and side menu for web view, but I would like it removed so my content can span the page on tablet and mobile. Thanks!
NorthEast
Master Propellus Maximus
Posts: 6372
Joined: Mon Mar 05, 2007 8:33 am

Re: Removing a column for mobile view?

Post by NorthEast »

If you look in your master page, you'll see that the menu is inside:

Code: Select all

<div class="sideContent">
So you need to hide div.sideContent in your tablet and mobile mediums:

Code: Select all

@media tablet
{
	div.sideContent
	{
		display: none;
	}
}

@media mobile
{
	div.sideContent
	{
		display: none;
	}
}
Q2TechWriter
Propeller Head
Posts: 23
Joined: Wed Jan 13, 2016 1:06 pm

Re: Removing a column for mobile view?

Post by Q2TechWriter »

Thanks, Dave Lee, but I've tried that. It doesn't work. The menu doesn't display, but the column still remains as empty and the text doesn't span across the page.
NorthEast
Master Propellus Maximus
Posts: 6372
Joined: Mon Mar 05, 2007 8:33 am

Re: Removing a column for mobile view?

Post by NorthEast »

Q2TechWriter wrote:Thanks, Dave Lee, but I've tried that. It doesn't work. The menu doesn't display, but the column still remains as empty and the text doesn't span across the page.
OK, it worked for the MadCap template I was looking at.

It's hard to say without seeing what you're actually using, so perhaps post the HTML of your master page and any related CSS (including mediums).
Post Reply