Hi,
i created a color section with a column and a text in it.Ii’m trying to reduce the text-size to 10px.
I added “socket-h2” to column css-class.
I’m using in quick-css:
#top #main h2.socket-h2 a span {
font-size:10px !important;
line-height:1.2em !important;
}
but text is not 10px in this section. How can i change h2-text to 10px?
kind regards Jak
Hey Jak73,
Add this to quick css:
.socket-h2 h2 span{
font-size:10px!important;
}
I tested and it should work.
Best regards,
Jordan Shannon
Hi Jordan,
thanks, works.
How can i red the space between the rows?
I tried: line-height:0.8em !important;
but it is not affecting it?
Any idea?
Kind regrads
Jak
Hi,
If you mean for the same area add the following to quick css:
.socket-h2 h2{
line-height:.2em!important;
}
Best regards,
Jordan Shannon