[tw] Re: Tiddler Title question

2011-06-14 Thread axs
oops, that's what I meant :) 
glad it's working.

Regards,
axs

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/9Oeul7ewdg8J.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: Tiddler Title question

2011-06-12 Thread axs
That won't work because the .title element is a block element, which means 
it stretches to fill the parent container. One way to achieve the effect you 
want is to edit your PageTemplate:

change this line:

div class='title' macro='view title'/div

to this:

div class='title' span class=highlightTitle macro='view 
title'/span/div


then in your StyleSheet add:

.highlightTitle{
background-color:#6F0;
}


Regards,
axs

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/tU8Q9a1I-n0J.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: Tiddler Title question

2011-06-12 Thread axelm
In my PageTemplate that line does not exist.

So I just pasted it in anyway, but nothing changes.

Is there another place I should ad it?

axelm


-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/c3ytaI5t7GgJ.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: Tiddler Title question

2011-06-12 Thread axelm
Figured it out. The code you mentioned is in the ViewTemplate, so I 
changed that and it worked!!

Thank you very much for your advise,

axelm


-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/20IX3yvC9e8J.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: Tiddler Title question

2011-06-11 Thread axs
If you have a .title{ } definition in your stylesheet, add

text-align:center; 

to it. If you don't have one, add

.title{
text-align: center;
}

to your StyleSheet.


Regards,
axs

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/I6lPD7DVF6gJ.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: Tiddler Title question

2011-06-11 Thread axelm
Thank you, axs.  That worked.

Then I tried to give the title a Highlight color like this:

background-color:#6F0;

but the whole line gets highlighted, I just want the text to highlight.

How do I do that?

axelm


-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/VE9QUfR83WEJ.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: Tiddler Title question

2011-06-11 Thread HansBKK
Use Firebug to narrow down your selectors.

On Jun 12, 1:01 am, axelm miedbr...@gmail.com wrote:
 Thank you, axs.  That worked.

 Then I tried to give the title a Highlight color like this:

 background-color:#6F0;

 but the whole line gets highlighted, I just want the text to highlight.

 How do I do that?

 axelm

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.