MyBB Community Forums

Full Version: Border Issue
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I have perform a test upgrade of our forum from myBB 1.1.6 to myBB 1.2.1, but on the test upgrade forum all the buttons (new reply, new thread, email, quote etc...) they have a rectangular border around them.. What could be causing this? I have check the theme and I cant find anything that relates to it.. Any help would be appreciated. Smile

Zac
Got a link to that forum? Smile
Heres a screenshot..
Got a link to the forum....?
Template error?

It should be <img src="/path/to/image/.gif" border="0">, but it appears as border="1" ?
You can try adding this to your theme:
img
{  
border-style: none;
}
Christian Wrote:You can try adding this to your theme:
img
{  
border-style: none;
}

That didnt work Sad Any other ideas?

Zac
An better way would be to go to Admin CP -> Themes -> Modify / Delete -> *your theme* -> Go
Go to the very bottom of the loaded page and add:
img {
border: 0;
}
into Additional CSS
CraKteR Wrote:An better way would be to go to Admin CP -> Themes -> Modify / Delete -> *your theme* -> Go
Go to the very bottom of the loaded page and add:
img {
border: 0;
}
into Additional CSS

Yes I tried that but no luck Sad

Zac
Are you absolute sure you are adding it to the right place? And right theme? Not the default theme?
Also please be sure to put it at the bottom of Additional CSS container aswell.
Pages: 1 2