[OJS 3.1.1.2] Line break after title in article details on Manuscript Theme

I´m trying to add a line break after the “keywords” or “abstract” titles in my article details, but I have no idea of php or tpl, I tried googling it but i dont know where to start. I’ve tried to ad “
” to the tpl files but I seems that it doesn’t make antything.
http://papelcosido.fba.unlp.edu.ar/ojs/index.php/aei/article/view/779
Im using version 3.1.1.2 and manuscript template
Any Idea?
Thanks!

Hi @Lisandro_Peralta,

The easiest way would be to upload custom CSS. E.g.:

.keywords .label, .abstract .label {
   display: block;
}

HEY! Thanks a lot!
Actually, that solution you gave me didnt worked, but guided me to realize I could add this block to my custom ccs and it worked. Thanks!

.obj_article_details .main_entry .label {
display: table; /* it used to be inline-block */
padding: 0 0 5px;
border-bottom: 3px solid #40d0d4;
color: rgba(0,0,0,0.54);
text-transform: uppercase;
}

1 Like

Yeah, you may need to apply more specific selector to override.

1 Like