Archived topic
Adding author job title just below author name
7 replies · Started by Hilton on November 22, 2019
Hi,
Is there a way to add job title just below author name? I tried all hook placements, but it only displays before or after author name + biography.
Thanks
Hi there,
try the generate_after_archive_title Hook with a Priority of 5 - this should place it before the Info
Hi David,
Now it is almost in the right place... how can I move it up a little further aligning it left just below the author name?
Try this CSS:
.author h1.page-title {
margin-bottom: 0.25em;
}
.author .page-title + div {
float: left;
}
.author .author-info {
margin-top: 1.5em;
}
David,
Considering the CSS best practices, it is better using your css or a custom CSS for the job title, like the one below? (or there is no difference?)
.job-title {
margin-top: -40px;
margin-bottom: 20px;
}
If you can add the CSS Class to the element then yes that is the better method.
Thanks ;)
You're welcome