Custm colour in post title

See snapshot i want ti change poat category and author text colour
 

Attachments

  • tmp_5584-Screenshots_2015-03-14-17-52-14-633758697.png
    tmp_5584-Screenshots_2015-03-14-17-52-14-633758697.png
    612.4 KB · Views: 32
done i have used this code

p {
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}

Thanks
 

joseph raphael

Well-Known Member
@Clickerstudio Since it's a touch application, I recommend you to use this code instead to work on all smartphones and tablets.

Code:
p {
    -webkit-touch-callout: none;
    -webkit-touch-select: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
 

Babu

New Member
@Clickerstudio Since it's a touch application, I recommend you to use this code instead to work on all smartphones and tablets.

Code:
p {
    -webkit-touch-callout: none;
    -webkit-touch-select: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


like this ??
 

Attachments

  • a.jpg
    a.jpg
    172.7 KB · Views: 7
Top