.gkIsPrevBtn font size

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Fri Jun 21, 2013 10:35 am
Reply with quote
Report this post
Hi there,

I want to change the .gkIsPrevBtn font size property to 100px in the image show g4. Is possible to use a different size for mobile devices?

Thank you!
User avatar
Expert Boarder

GK User
Fri Jun 21, 2013 10:39 am
Reply with quote
Report this post
You can add your css code to mobile.css as well with a different font-size.

Depending on the order of loading css file module css file might get loaded last so in this case you can use media queries in your override.css which gets loaded at all times as last css.

Such as below
Code: Select all
@media screen and (max-width: 600px) {
  .gkIsPrevBtn {font-size: 50px;}
}
@media screen and (min-width: 601px) and (max-width: 1200px) {
  .gkIsPrevBtn {font-size: 100px;}
}
User avatar
Platinum Boarder

GK User
Fri Jun 21, 2013 5:50 pm
Reply with quote
Report this post
Perfect! Thank you
User avatar
Expert Boarder

GK User
Fri Jun 21, 2013 6:05 pm
Reply with quote
Report this post
No problem at all, see you around...
User avatar
Platinum Boarder


cron