How do I get rid of orange border in the sign in page?

A place for discussion about skinning and design. Before posting questions here you should review the documentation about creating skins.

This thread is closed to new posts. You must sign in to post in the forums.
10/15/2012 2:21:23 PM
Gravatar
Total Posts 62

How do I get rid of orange border in the sign in page?

 

It looks like this now:

http://s9.postimage.org/9ggcob98d/Capture.jpg

10/15/2012 2:32:18 PM
Gravatar
Total Posts 91

mojoPortal Hosting & Design @ i7MEDIA!

Re: How do I get rid of orange border in the sign in page?

That is most likely styling on the fieldset element in your style.css.  I can't tell for sure from just a picture but that's what I would place my bet on.  You can find out for sure if you have Mozilla Firefox with Firebug installed.  Use Firebug to select to border and you should see if it is, in fact, the fieldset that has the offensive styling.  If it is then you should open your style.css file and do a word search for "fieldset" and then replace whatever styling is there with:

fieldset {
border: 0 none;
margin: 0;
padding: 0;
}

I hope that points you in the right direction,

-Elijah

10/15/2012 2:37:44 PM
Gravatar
Total Posts 62

Re: How do I get rid of orange border in the sign in page?

Wow that did it perfectly! Saved me from hours trying to find the right style! Thanks!

You must sign in to post in the forums. This thread is closed to new posts.