MyBB Community Forums

Full Version: Make urls/links bold automatic
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hello,

I have a question, wich template or do I need to have a plugin to have urls/links automatic bold. So if someone put a link on a message or topic the link is bold automatic

thanks for helping me!!
add below code in your theme's global.css (thru admin panel --> themes) and hard refresh your browser (use CTRL + F5)
.post_body a {font-weight: bold !important;}
Works here thanks!!!
^ edit : not seen above edited response ...
hmm., have you changed above given code to this : .post_url a {font-weight: bold !important;} <-- no, it doesn't work ..
suggestion is to use .post_body a {font-weight: bold !important;}
Thanks hahaha
Hey,

I have a new qustion almost the same is before but now on a diffrent page.

I have the portal page as homepage, and everywere the links on posts ar bold but not on the portal page.....

So Do annyone the code for making the post links bold on the portal to???
I have tryed the next codes but not working:
.portal_announcement a:link {font-weight: bold !important;}

.portal_announcement a  {font-weight: bold !important;}

.portal_body a:link {font-weight: bold !important;}

.portal_body a {font-weight: bold !important;}

.portal a {font-weight: bold !important;}

.portal a:link {font-weight: bold !important;}


So annyone the working code ????
Delete, sorry
(2012-03-19, 02:00 PM)Frank.Barry Wrote: [ -> ]Delete, sorry

Haha no problem, I wait until some knows it. Big Grin

Someone a idee how to get urls bold on the portal page ?????
Thanks
Open portal_announcement template and in table tag add additional class called portal_announcement (next to class tborder so the final result will be class="portal_announcement tborder") and after that add following code to global.css

.portal_announcement a:link {font-weight: bold !important;}

.portal_announcement a {font-weight: bold !important;}
Pages: 1 2