How to change color link in mobile page using mobile plugin

Posted in: Newspaper
Post count: 11

Hello, how to change link color in mobile page
I was try change in in css and less file but no changes.

Post count: 23312

Hi,

Use the code below and place it in Theme panel -> Custom CSS area.

@media(max-width:767px){
a{
color:red!important;
}
}

The result is here -> https://www.screencast.com/t/VtEyRIu8

Thanks.

Post count: 11

Thank you working using custom css a:link {color:#0387da;} /* unvisited link */

Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newspaper’ is closed to new topics and replies.