Quote Originally Posted by phillip_Qt View Post
Hi. I applied in side qss file as

QLabel
{
QFrame::setFrameShadow (QFrame::Sunken)
}
still same problem.
It may sound rude but are you familiar with Qt style sheets and Qt itself ?
What I wrote means that you should literally write in your program code. For instance
Qt Code:
  1. QLabel myLabel;
  2. myLabel.setFrameShadow (QFrame::Sunken);
To copy to clipboard, switch view to plain text mode 
I hope it helps