Archived topic
Add link to site tagline
3 replies · Started by Duncan on June 4, 2021
Viewing posts 1–4 of 4
Hi,
The site title in the header is automatically linked to the site home page. Is there a php snippet or another method that will allow the site tagline to link to the home page in the same way?
Thanks
Duncan
Hi there,
you could use some CSS to make the entire site branding container a clickable element:
.site-branding {
position: relative;
}
.main-title a:before {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
Perfect, thanks David!
You're welcome
This archived topic is closed to new replies.