0
Answered

cleaning up simple style

Vaishak 8 years ago updated 8 years ago 2

I really like the simple theme. I wonder how the CSS file can be hacked to basically clean up the simple style in the following manner. Currently, you have


TITLE. AUTHOR. LOCATION/YEAR. paper

TITLE. AUTHOR. LOCATION/YEAR. paper


It would be nicer to have


TITLE.

AUTHOR.

LOC.

paper


(2 line break)


TITLE.

....


So it doesn't require a change to the theme per se, but would need a modification to the CSS file, I'd imagine.

Answered

Yes, try this:


.bibbase_paper_title {    
    display: block;
}
span.bibbase_paper_author {
    display: block;
}
br.bibbase_paper_content {
    display: block;
}

fantastic. thank you!