Hi Wim,

It really depends on what exactly you want to style and thus the currently 
applied style definitions. To figure that out, use your browsers inspection 
tools by right clicking the target link and then something like "inspect 
element" in Firefox or Chrome. Then find out what css selectors make up the 
rules for this link.

As a general rule, the css rule you define needs to be either applied after 
the one you want to override or be more specific in order to overrule it. 
In case of doubt add an !important to your rule, e.g....

.someClass .tiddlyLink{
    font-weight:bold !important;
}

In general, adding a wrapping css class as I suggested will make it more 
specific. However, you may need to also include some outer wrapper still 
which you will find out by having a look at the style panel in your 
browsers "developer tools", e.g...

.viewer .someClass .tiddlyLink{
}

or perhaps

.someClass a.tiddlyLink {
}

The only reasonable way to find that out is by using the inspection tools.

Tobias.

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to