MyBB Community Forums

Full Version: css question (only links in post bold)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

anyone knows if it's possible to only make http links inside a post Bold, while keeping the other links on the board not bold. The global.css adds font weight bold to every link on the forum, also the top navigation etc.

Hope someone can help Smile
Edit your theme's global.css in advanced mode. Find following:
.post_body {
	padding: 5px;
}

Add under following:
.post_body a, a:visited, a:hover {
	font-weight: bold;
}
Thanks, I tried your suggestion but there are some problems. The links inside the posts do get bold, so that works. But the following things also happen:

1. links in the welcome box are bold when hoovered
2. links to subforums in the forum overview are bold
3. thread links in the thread view are bold when hoovered

Tested with Firefox 3 on WinXp and Safari on Mac OSX