MyBB Community Forums

Full Version: Style - Url Links on Portal
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi!

Please, gathering information on web i add the code below on global.css to change url style on post. I would like the same style on portal announcements. Even being the same message, doesnt share the same css codes. What should i do?

Thanks!

Quote:.post_body a:link {
color: #0072BC;
text-decoration: none;
}

.post_body a:visited {
color: #0072BC;
text-decoration: none;
}

.post_body a:hover {
color: #ff6600;
text-decoration: underline;
}

.post_body a:active {
color: #0072BC;
text-decoration: underline;
}
Open the portal announcement template, find this code :

<p>
	{$message}
</p>

and change to

<p class="post_body">
	{$message}
</p>
Solved!

Thank you!!