|
-
Different fonts on the same line
I'm importing some text from an xml file. Which looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<rss>
<channel>
<item id="1">
<TitleCopy<![CDATA[<title>jane</title<keywords> - Hopeful | Chatterbox | Ardent</keywords>]]></TitleCopy>
</item>
</channel>
</rss>
I have a css style file. Which looks like this:
title {
color: #A6CE46;
font-size: 24px;
font-family: DivineFont;
}
keywords {
color: #999999;
font-size: 16px;
font-family: NeoSanLightFont;
}
At the moment when the text is loaded into the dynamic text block it looks like this:
jane
- Hopeful | Chatterbox | Ardent
What I want to happen is this:
jane - Hopeful | Chatterbox | Ardent
I'm not asking the "keywords" to drop to the next line. The dynamic text block is long enough to accompany all the text.
Please help
Thanks
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|