Bullets not displaying Artisteer 4 & MojoPortal ver 2.3.9.3

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.
11/2/2012 4:04:52 PM
Gravatar
Total Posts 83
-- Joe

Bullets not displaying Artisteer 4 & MojoPortal ver 2.3.9.3

I am using mojoPortal Skin Exporter Plugin for Artisteer 4 version 1.7, Artisteer 4.0.0, and MojoPortal ver 2.3.9.3 MSSQL

My bullets are not displaying - I think I found the issue - but please let me know if you think I should be fixing this another way.

In the file \Data\style\adminmenu\style.css

The style below was hiding my bullets:

div.mojo-tabs ul  > li::before, .art-post ul > li::before, .art-textblock ul > li::before,
div.adminmenu ul.simplelist  > li::before, .art-post ul > li::before, .art-textblock ul > li::before {
content: ''; display:block;}

If I change this to the CSS below, my bullets again display:

div.mojo-tabs ul  > li::before {
content: ''; display:block;}

So far, I don't see anything else that is not displaying correctly.

I am not sure if this is an issue with Artisteer not rendering a CSS, or the Exporter, or MojoPortal ver 2.3.9.3. 

I would appreciate any feedback on this.

11/5/2012 11:58:37 AM
Gravatar
Total Posts 18439

Re: Bullets not displaying Artisteer 4 & MojoPortal ver 2.3.9.3

Hi Joe,

Someone else reported this after the 2.3.9.3 release. To solve it I've removed the Artisteer specific selectors from the adminmenu/style.css file so it looks like this:

div.mojo-tabs ul > li::before,
div.adminmenu ul.simplelist > li::before {
content: ''; display:block;}

but then I found some places where the Artisteer bullets were happening in places where I don't want them, so I added this to the style-artisteeroverrides.css in the Artisteer skins:

ul.simplelist > li::before,
div.gallerymodule ul > li::before,
ul.simplehorizontalmenu > li::before,
ul.blognav > li::before
{ content: ''; display:block;}

I also updated our Artisteer 4 skin exporter plugin so this is included when exporting from the latest version of the plugin.

Hope that helps,

Joe

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