Turning off diagonal effects?

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
Mon Aug 04, 2014 12:11 pm
Reply with quote
Report this post
Is there an easy way I can simply turn off the diagonal effects in this template and just square them off??

Let me know if you want a screenshot to illustrate what I mean.

Thanks!
User avatar
Gold Boarder

GK User
Mon Aug 04, 2014 12:17 pm
Reply with quote
Report this post
Please edit: /templates/gk_musicstate/css/override.css and add at its end:
Code: Select all
.frontpage #gkDarkBottom:after,
.frontpage #gkDarkBottom:before {
   -webkit-transform: skewY(0deg);
   -moz-transform: skewY(0deg);
   -ms-transform: skewY(0deg);
   -o-transform: skewY(0deg);
   transform: skewY(0deg);
}
.frontpage #gkBottom3:after,
.frontpage #gkBottom3:before {
   -webkit-transform: skewY(0deg);
   -moz-transform: skewY(0deg);
   -ms-transform: skewY(0deg);
   -o-transform: skewY(0deg);
   transform: skewY(0deg);
}

Remember to enable "CSS override" in template settings - advanced section.
User avatar
Moderator

GK User
Mon Aug 04, 2014 12:22 pm
Reply with quote
Report this post
That's worked exactly how I wanted. Thanks Cyberek!

Only diagonal effect it doesn't turn off is one between TOP USERS and the THERE ARE MANY VARIATIONS OF PASSAGES LOREM IPSUM AVAILABLE footer.

Please see attached screen grab.

How can I turn this last one off?
User avatar
Gold Boarder

GK User
Mon Aug 04, 2014 12:24 pm
Reply with quote
Report this post
Could you please post an url to your site?
User avatar
Moderator

GK User
Mon Aug 04, 2014 12:55 pm
Reply with quote
Report this post
Sorry Cyberek - same answer as previously. I'm just working off the demo quickstart package and it's offline at the moment and not online. But I have made no changes (beyond override.css codes advised by yourself). Thanx
User avatar
Gold Boarder

GK User
Mon Aug 04, 2014 1:16 pm
Reply with quote
Report this post
Basing on MusicState demo:
Code: Select all
#gkBottomSection:before {
-webkit-transform: skewY(0deg);
-moz-transform: skewY(0deg);
-ms-transform: skewY(0deg);
-o-transform: skewY(0deg);
transform: skewY(0deg);
}

Add above code to fix the last skewed line.
User avatar
Moderator

GK User
Mon Aug 04, 2014 1:21 pm
Reply with quote
Report this post
That did it!! Thanks a million Cyberek :-)
User avatar
Gold Boarder

GK User
Mon Aug 04, 2014 2:40 pm
Reply with quote
Report this post
No problem ;).
User avatar
Moderator


cron