Table border is always visible

This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.

Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.

This is the place to report bugs and get support

When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:

  • What operating system were you running when the bug appeared?
  • What database platform is your site using?
  • What version of mojoPortal are you running?
  • What version of .NET do you use?
  • What steps are necessary to reproduce the issue? Compare expected results vs actual results.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum.
This thread is closed to new posts. You must sign in to post in the forums.
3/12/2012 6:42:37 AM
Gravatar
Total Posts 15

Table border is always visible

Even if table border=0 in the Table properties.

3/12/2012 8:52:06 AM
Gravatar
Total Posts 18439

Re: Table border is always visible

Artisteer designs (most of the included skins in mojoPortal are Artisteer designs) always seem to put borders on tables.

You can remove it by adding this to the bottom of the style-artisteer-overrides.css file:

.art-article td, .art-article th { border:none; }

Then reset the skin guid under Administration > Advanced Tools > Designer Tools > Cache Tool

Hope that helps,

Joe

3/13/2012 4:57:56 AM
Gravatar
Total Posts 15

Re: Table border is always visible

Joe, thank you very much! Smile

9/15/2012 5:10:18 AM
Gravatar
Total Posts 66

Re: Table border is always visible

I have just tried this fix on some of my sites and it does work, but setting border="1" on a table only switches on an outside border, but not internal cell borders. An example can be found in the league tables at the top of http://www.warringtonql.org.uk/results.aspx

Is there any way of switching this on?

9/16/2012 2:57:37 PM
Gravatar
Total Posts 18439

Re: Table border is always visible

put a class on your table like class="mytable"

then in the css for your skin add

table.mytable td, table.mytable th { border:solid thin black; }

obviously you can use different width colors etc by using different css rules.

After editing the css for your skin, go to Administration > Advanced Tools > Design Tools, Cache Tool and click th ebutton to reset the skin guid, tha will force all browsers to load the latest css.

Hope that helps,

Joe

9/16/2012 4:40:12 PM
Gravatar
Total Posts 66

Re: Table border is always visible

Many thanks - it worked perfectly

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