Customizing author view
Posted: Fri Aug 09, 2013 5:08 pm
Hello,
I'm currently trying to customize the author view for a TEI5-XML file.
In my XML file, I have an element with the following attributes:
While I was able to make appear all <form>-Tags with the attribute "hyperlemma" bold and italic by adding
to .\Oxygen XML Editor 15\frameworks\tei\xml\tei\css\tei.css,
I wasn't able to address a second attribute at the same time, because
doesn't work.
What do I have to add to the .css file in order to make <form>-Tags of type="hyperlemma" AND xml:lang="grc" boldface?
I would appreciate any hint in the right direction.
Thanks,
Susanne.
I'm currently trying to customize the author view for a TEI5-XML file.
In my XML file, I have an element with the following attributes:
Code: Select all
<form type="hyperlemma" xml:lang="grc" xml:id="hl_grc-4">
Code: Select all
form[type="hyperlemma"] {
display: inline;
font-style: italic;
font-weight:bold;
}
I wasn't able to address a second attribute at the same time, because
Code: Select all
form[type="hyperlemma"][xml:lang="grc"] {
display: inline;
font-style: italic;
font-weight:bold;
}
What do I have to add to the .css file in order to make <form>-Tags of type="hyperlemma" AND xml:lang="grc" boldface?
I would appreciate any hint in the right direction.
Thanks,
Susanne.