I use Bootstrap template and I would like hide the title of a specific tab. The only solution seem to choose "raw display without title" but in that case the rounded tab border is also hidden. My goal is to keep this border but simply without the title. The fact to use _UE_BLANK as a title is not a solution because the tab still present with his little gray horizontal line.
If I use:
Code:
div.tab-row {display: none;}
this remove all title tab and if I tried to target desired tab only with:
Code:
#cbtab38.tab-row {display: none;}
this don't work.
any clue ?