No Tag cloud in skin made with Artisteer 4.1 + mojo exporter

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.
3/16/2013 6:25:58 PM
Gravatar
Total Posts 251

No Tag cloud in skin made with Artisteer 4.1 + mojo exporter

I am using Artisteer 4.1 + mojo exporter january build, for mojoPortal 2.3.9.6
The tag cloud is rendered as a common UL, instead as a tag cloud
in stylemojo.css there is

ul.tag-cloud li { display:inline; list-style-type:none;...

but when I analyze with firebug it's striked out, artisteer css overrides on it

What we can do?

3/17/2013 12:02:16 PM
Gravatar
Total Posts 18439

Re: No Tag cloud in skin made with Artisteer 4.1 + mojo exporter

Edit the artisteer-overrides.css file

change from this:

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

to this:

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


ul.tag-cloud  > li::before { content: ''; }
ul.tag-cloud  a { padding-right:5px; }

Hope that helps,

Joe

3/18/2013 6:24:59 AM
Gravatar
Total Posts 251

Re: No Tag cloud in skin made with Artisteer 4.1 + mojo exporter

I don't have that in my artisteer-overrides.css or in  style-mojo.css

3/18/2013 9:30:48 AM
Gravatar
Total Posts 18439

Re: No Tag cloud in skin made with Artisteer 4.1 + mojo exporter

you could try adding it if it isn't there already. 

3/18/2013 9:59:15 AM
Gravatar
Total Posts 18439

Re: No Tag cloud in skin made with Artisteer 4.1 + mojo exporter

fyi, I just uploaded a new version of the Artisteer skin exporter with a few tweaks such as this one to fix the tag cloud style/

Best,

Joe

3/20/2013 6:33:10 AM
Gravatar
Total Posts 251

Re: No Tag cloud in skin made with Artisteer 4.1 + mojo exporter

Worked perfectly!

Thanks!

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