[tw] Re: Basic changing colour of link question

2014-01-03 Thread Stephan Hradek
CSS is your friend.

-- 
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.


[tw] Re: Basic changing colour of link question

2014-01-03 Thread Ton Gerner
Hi Denis,

I assume you use TWclassic.

As Stephan says: CSS is your friend.
He knows more about CSS than I do, but doesn't want to tell you ;)

If you inspect a link with the developer tools of your browser you see 
classes tiddlyLink and tiddlyLinkExisting.
tiddlyLinkExisting makes the link bold already.

So if you add these classes and a class linkColor, you get what you want:

htmla class=tiddlyLink tiddlyLinkExisting linkColor href=javascript:; 
onclick=story.closeAllTiddlers();restart();home/a/html

Add to your Stylesheet:

.linkColor {
 color: white;
}

Cheers,

Ton

On Friday, January 3, 2014 4:25:02 PM UTC+1, Stephan Hradek wrote:

 CSS is your friend.


-- 
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.