|
#1

Oct 4, 2012, 02:11 PM
|
|
Hi there! Thanks for great theme firstly. But i have a problem with a dual title colour.

I want to highlight my title like "com." - with one colour, "press" - with another.
I have read about firstpart code, but simply didn't find where to edit or paste it
Thanks
|
#2

Oct 4, 2012, 06:39 PM
|
 |
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
The blog title is set in the virtual sub-template header.php and comes from a WordPress function. So you would want to replace that whit a hard coded text and put the two color code there.
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
#3

Oct 5, 2012, 02:04 AM
|
|
Thanks! I did
HTML Code:
<h1 id="sitetitle">
<a href = "http://testagain.hostenko.com">
<span class="firstpart">com.</span>
press
</a>
</h1>
But now it's some space after "com."

How can i fix it?
Thanks
Last edited by juggledad; Oct 5, 2012 at 05:44 AM.
|
#4

Oct 5, 2012, 07:29 AM
|
 |
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
Currently there is no way to do this. the code will split the title in half to have the dual color. So if your title is 15 characters, the split will be at 7
I'll create an RFE for this
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
#5

Oct 6, 2012, 12:18 AM
|
|
|
367 posts · Oct 2012
Florida
|
|
Quote:
Originally Posted by simon_me
...
But now it's some space after "com."
How can i fix it?
|
To eliminate the space, try this code, with no spaces or newlines:
Code:
<a href = "http://testagain.hostenko.com"><span class="firstpart">com.</span>press</a>
If it works, please post the rest of the code to make it not split the color in the middle. I'd like to do something similar.
|
#6

Oct 6, 2012, 04:11 AM
|
 |
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
jerryc: good idea, I had the same one and tried it but it doesn't work, the whole line becomes the same color.
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
#7

Oct 6, 2012, 09:35 AM
|
|
|
367 posts · Oct 2012
Florida
|
|
Quote:
Originally Posted by juggledad
jerryc: good idea, I had the same one and tried it but it doesn't work, the whole line becomes the same color.
|
Me, too, jug. That's why I asked simon for the rest of the code. He got that part to work, and you and I got the space to go away.
Simon, did you do something else, like maybe in the css, to get both colors to show?
|
#8

Oct 6, 2012, 10:05 AM
|
 |
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
it has to do with how the code that parses the dual color titles works and spaces that are added in. I've created an RFE asking for more control. see RFE 113-02: allow Dual Color to specify where the color change happens
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
#9

Oct 13, 2012, 02:57 PM
|
|
Quote:
Originally Posted by jerryc
If it works, please post the rest of the code to make it not split the color in the middle. I'd like to do something similar.
|
no, all text became black
|
#10

Oct 13, 2012, 06:20 PM
|
|
|
367 posts · Oct 2012
Florida
|
|
Quote:
Originally Posted by simon_me
no, all text became black
|
I've been thinking about this, but I haven't tried it yet. How about spanning the whole thing with a tag that says
HTML Code:
<span style = "word-spacing:0px;"> ... </span>
and leaving the rest of the code the way you laid it out.
|
#11

Oct 14, 2012, 11:34 AM
|
 |
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
I've played with this and created an RFE asking for more control. Feel free to mess with the code and try different things, maybe you will find a way, but I think it has to do with the parsing of the code and what results. You will have to dig into the theme code.
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
#12

Nov 5, 2012, 10:42 PM
|
|
|
367 posts · Oct 2012
Florida
|
|
Quote:
Originally Posted by juggledad
I've played with this and created an RFE asking for more control. Feel free to mess with the code and try different things, maybe you will find a way, but I think it has to do with the parsing of the code and what results. You will have to dig into the theme code.
|
I found a workable hack and posted it on this related thread.
|
#13

Nov 21, 2012, 02:57 PM
|
|
The javascript doesn't look like it is checking for a preexisting span.firstpart so it will try to parse the text of the title anyway.
There's a bug in the code that inserts an extra space after the closing span tag in includes/get_javascript.php.
See this related thread with updated code to allow checking for punctuation. You could use this mod and add the period to the section of tests.
|
|