Tagged: x
-
AuthorPosts
-
April 7, 2016 at 4:19 pm #871907
Hello,
I’m trying to set
text-decoration: none !important;
on the sidebar here to no avail.How can I target it?
Thanks
April 7, 2016 at 11:53 pm #872331Hello Nicholas,
Thanks for writing in!
You can add this under Custom > CSS in the Customizer:
.x-sidebar .widget a, .x-sidebar .widget ul li a { text-decoration: none !important; }
Thanks.
April 8, 2016 at 10:32 am #872973Thanks for the reply– unfortunately no luck:
April 8, 2016 at 10:33 am #872975This reply has been marked as private.April 9, 2016 at 12:15 am #873748Hi there,
Upon checking your CSS code, I noticed there are several missing semicolons.
Please find following code and and fix them:
aside.x-sidebar.right { padding: 2%; background: rgba(255,255,255,1); background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(250,250,250,1) 2%, rgba(246,246,246,0.98) 47%, rgba(237,237,237,0.96) 100%); background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,255,255,1)), color-stop(2%, rgba(250,250,250,1)), color-stop(47%, rgba(246,246,246,0.98)), color-stop(100%, rgba(237,237,237,0.96))); background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(250,250,250,1) 2%, rgba(246,246,246,0.98) 47%, rgba(237,237,237,0.96) 100%); background: -o-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(250,250,250,1) 2%, rgba(246,246,246,0.98) 47%, rgba(237,237,237,0.96) 100%); background: -ms-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(250,250,250,1) 2%, rgba(246,246,246,0.98) 47%, rgba(237,237,237,0.96) 100%); background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(250,250,250,1) 2%, rgba(246,246,246,0.98) 47%, rgba(237,237,237,0.96) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed', GradientType=1 ); background-size: 100vh; padding-top: 10% overflow-y: scroll; } .breathe-8 { text-align: left; line-height: 2.2em; padding: 8% }
Please check your CSS again and make sure there is no syntax mistake.
Thanks.
April 11, 2016 at 10:58 am #876657I’ve gone through and made the changes, but
.x-sidebar .widget a, .x-sidebar .widget ul li a { text-decoration: none !important; }
will only apply in Cornerstone’s custom css; not site-wide via Customizer like I want
April 11, 2016 at 6:26 pm #877326Hi Nicholas,
Please try this:
.x-sidebar a .x-sidebar .widget a, .x-sidebar .widget ul li a { text-decoration: none !important; }
Hope this helps.
-
AuthorPosts