MyBB Community Forums

Full Version: Make URLS arial colour: Black
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how can i make urls arial black so like the mybb ones but black, then when highlighted underlined

i used to have them bold and grey but it looks messy.
well to make them bold you would have added
font-weight:bold;
to the css correct?

so to change the font do
font-family:arial;
font-weight:bold;

this will make it arial and bold although the font wont be arialblack as i believe that would require some custom code to add a custom font.
Add the font-family: Arial Black; property in the the class I previously posted (post_body)
Added this to the bottom of global css

.post_body a:link, .post_body a:visited, .post_body a:active{
font-family: Arial Black;
}

this was the result
[Image: c5ac5fe3ed16e760cd2cbb4a65285b9b.png?1342201104]

Its not black, Its bold which i dont want it to be why

I want it to be arial like the text
Then don't use Arial Black, that's a completely different font.

.post_body a:link, .post_body a:visited, .post_body a:active{
	font-family: Arial, sans-serif;
	font-weight: bold;
}
In my think i mean arial and the colour being black

and once again the colour is grey on there so how do i change into black
Ok, after reading your posts again, this should match your request perfectly:

.post_body a:link, .post_body a:visited, .post_body a:active {
    font-family: Arial, sans-serif;
    color: #000;
}

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

If not then you will have to explain it in a simpler way.
(2012-07-13, 06:13 PM)Fábio Maia Wrote: [ -> ]Ok, after reading your posts again, this should match your request perfectly:

.post_body a:link, .post_body a:visited, .post_body a:active {
    font-family: Arial, sans-serif;
    color: #000;
}

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

If not then you will have to explain it in a simpler way.

Yes thats perfect thanks
1 more thing how do you make font in a post larger as mine is reasonably small
Its font-size: 25px; property.