Hello,
Is it possible to apply a style to an HTML element using only its title as a unique identifier? For example:
<div class="my_class">
<a href="some site" title="MyTitle">My Link</a>
</div>
I would like to write a rule that will apply only to link element within a div of class my_class and the link title MyTitle.
I do not have the ability to change page layout, however, I can use a custom CSS file that is included automatically.
Thank you