Jake Bunce
Well-known member
This is a guide for changing only forum title links without affecting other links on the page.  It's for the titles in the forum listing like Main Forum:

By default the forum title links use the body link color which affects all links:
Admin CP -> Appearance -> Templates -> xenforo.css
	
	
	
		
If you want to set a different link color for just forum titles then edit this template:
Admin CP -> Appearance -> Templates -> node_list.css
Add this code:
	
	
	
		
...as shown below:
	
	
	
		
Specify any color code you want.
				
			
By default the forum title links use the body link color which affects all links:
Admin CP -> Appearance -> Templates -> xenforo.css
		Code:
	
	a:link,
a:visited
{
	color: @primaryMedium;
	text-decoration: none;
}
	If you want to set a different link color for just forum titles then edit this template:
Admin CP -> Appearance -> Templates -> node_list.css
Add this code:
		Code:
	
				.nodeTitle a,
			.nodeTitle a:visited
			{
				color: #ffffff;
			}
	...as shown below:
		Code:
	
		.node .nodeTitle
	{
		@property "nodeTitle";
		font-size: 12pt;
		@property "/nodeTitle";
	}
		.node .unread .nodeTitle
		{
			@property "nodeTitleUnread";
			font-weight: bold;
			@property "/nodeTitleUnread";
		}
			.nodeTitle a,
			.nodeTitle a:visited
			{
				color: #ffffff;
			}
	.node .nodeDescription
	{
		@property "nodeDescription";
		font-size: 11px;
		@property "/nodeDescription";
	}
	Specify any color code you want.
