I created a text menu using html. On mobile devices the text is not responsive. I have tried multiple solutions from the forum and tried to add global css to fix the issue. I have a screenshot below. Please advise.

I created a text menu using html. On mobile devices the text is not responsive. I have tried multiple solutions from the forum and tried to add global css to fix the issue. I have a screenshot below. Please advise.

Hi,
To make it responsive, you need to remove the width you have added to the container

You can add a unique class to your row element.

Then add this in Theme Options > CSS
@media(min-width:979px) {
.my-row {
width: 540px;
}
}
Hope that helps
worked like a charm. Thanks Paul!. One more question. Is it possible to change the text and link text colors for a single page? I know how to change for the entire site.
Hi there,
Yes it is possible. Instead of adding the CSS code in the CSS area of the Theme Options, try placing the code to the CSS area of the page itself.

Hope this helps.
I will give it a whirl. Still working on identifying the css selector for elements. Thanks.
You are most welcome. 
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.