Changing the Font Color of your Blog Title

June 26, 2003 Comments Off on Changing the Font Color of your Blog Title

Interestingly enough last night I figured out how to change the color of my blog title inside the template instead of in the title and description section in Radio. I still haven’t figured out how to get it to be italic although I have entered the code for it….update..thanks from Bob in comments, figured out how to add the italic html code to my title and make it work

Before I made the changes, the section inside the home page template and the main template looked like this and this is what you need to look for somewhere in your template, I found my underneath the template images macros….

<td valign=”top”><font size=”+2″ color=”#000000″><b>
                        <a href=”<%radio.macros.weblogUrl ()%>” style=”color:Black; text-decoration:none”><%siteName%></a> </b></font><br>
                        <font color=”#ffffff”><i><%description%></i></font>

After I made the change to the code, it looked like this..section in purple is where I made a change:

<td valign=”top”><font size=”+2″ color=”#000000″><b>
                        <a href=”<%radio.macros.weblogUrl ()%>” style=”color:#FFCCFF; text-decoration:none;”><i><%siteName%></a></i> </b></font><br>
                        <font color=”#ffffff”><i><%description%></i></font>

The title of your blog is found in the macro <%siteName%> therefore if you want to change the color or feel of your title for your blog, you would change the info located in this section before the title macro ” style=”color:#FFCCFF; text-decoration:none;“> <i> macro </i>

The description of your blog is found in the macro <%description%> therefore if you want to change the color or feel of your description for your blog, you would change the info located in this section before the description macro <font color=”#ffffff”><i><%description%></i></font>

Categories : Newbie Tips