changing colour of hyper links in posts

For support and discussion related to templates, themes, and imagesets in phpBB 3.2.
Post Reply
User avatar
TheButcher2
Registered User
Posts: 1030
Joined: Tue May 13, 2014 11:38 pm
Contact:

changing colour of hyper links in posts

Post by TheButcher2 »

Hi guys

Some of my members want the hyper link colour changed in posts.

What template and which line do i need to change to make urls posted in posts change to 0000FF

Thanks
User avatar
stevemaury
Support Team Member
Support Team Member
Posts: 52768
Joined: Thu Nov 02, 2006 12:21 am
Location: The U.P.
Name: Steve
Contact:

Re: changing colour of hyper links in posts

Post by stevemaury »

It's in css, not templates. Try here, in colours.css

Code: Select all

/* Post body links */
.postlink {
	border-bottom-color: #368AD2;
	color: #368AD2;
}

.postlink:visited {
	border-bottom-color: #5D8FBD;
	color: #5D8FBD;
}

.postlink:hover {
	background-color: #D0E4F6;
	color: #0D4473;
}

.signature a, .signature a:hover {
	background-color: transparent;
}

/* Back to top of page */
.top i {
	color: #999999;
}

/* Arrow links  */
.arrow-left:hover, .arrow-right:hover {
	color: #368AD2;
}
I can stop all your spam. I can upgrade or update your Board. PM or email me. (Paid support)
Post Reply

Return to “[3.2.x] Styles Support & Discussion”