Hello,
I want to export a page but need the page's title h1 styled differently from the other h1 elements. I cannot find the right selector to match it in CSS. In regular web view I used h1#title-text but this does not work in PDF export.
Any hints welcome!
Hey Masin,
I don't know if this is still relevant for you but I stumbled upon the same issue today.
What I have figured out is probably not the most elegant solution but it worked for me:
.pagetitle h1:first-child
{
display:none;
}
I'll give it a try. Thanks for your reply!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.