How can I get this type of Title with base line and color ?
Pls see attached image.
This is coming from minimal theme in WPLMS.
General suggestion for this and other similar requests : If you want features from minimal or elegant theme then copy the codes from these files and add them in your child theme's style sheet. This does not require any theme specific knowledge and can be done by any freelancer easily.
For this :
Check the file : Wplms/assets/css/scss/skins/minimal.scss
search for "h3.heading" and copy the CSS code.
I copied this code to style.css, but nothing happened
h3.heading,
h4.widget_title{
border-bottom:2px solid $bordercolor;
span{
position:relative;
&:before{
content:'';
height:2px;
background:#FFF;
position:absolute;
border-radius:2px;
bottom:-11px;
left:100%;
width:10px;
}
&:after{
content:'';
height:2px;
border-radius:2px;
background:$primarybg;
position:absolute;
bottom:-11px;
left:0;
width:100%;
}
}
}