We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In my CSS file I have this code to specify a logo to go in the top left corner above the table of contents:
#table-of-contents h2{ background: url("Logo.png"); }
Is it possible to make this image a clickable link? similar to what is asked here: fniessen/org-html-themes#80
something like this perhaps:
#table-of-contents h2{ background: url("Logo.png"); background-link: url("http://www.website.com"); }
The text was updated successfully, but these errors were encountered:
No, this is not possible for the moment unfortunately. There is no background-link CSS property.
background-link
You would have to modify the template itself to do this I think.
Sorry, something went wrong.
No branches or pull requests
In my CSS file I have this code to specify a logo to go in the top left corner above the table of contents:
#table-of-contents h2{
background: url("Logo.png");
}
Is it possible to make this image a clickable link? similar to what is asked here:
fniessen/org-html-themes#80
something like this perhaps:
#table-of-contents h2{
background: url("Logo.png");
background-link: url("http://www.website.com");
}
The text was updated successfully, but these errors were encountered: