Help with a Skin made with Artisteer 2.5

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.
1/23/2011 3:13:28 PM
Gravatar
Total Posts 165

Help with a Skin made with Artisteer 2.5

Hey Everyone,

I wanted to change the top of the center column to make the tops of the left and right columns.

I was able to edit the page.html to get the look I want, however I'm just not sure where to make the change for Mojo to get this change also.

http://www.capitalcitydoulaservices.com.asp1-20.websitetestlink.com/Data/Sites/1/skins/ccds5-artisteer-24/page.html  is how I want it to look and http://www.capitalcitydoulaservices.com.asp1-20.websitetestlink.com is how it looks right now.

in the page.html, I was able to add the following code right after the <div class"art-post"> div.

<div class="art-blockheader">
     <div class="l"></div>
     <div class="r"></div>
     <div class="t">Welcome</div>
</div>

 

And it supplied me with the look I was trying to get, however I'm just unable to locate where I should add this or make the change, it's not in the layout.master file.

 

Thanks,

Mark
 

 

1/24/2011 1:06:17 PM
Gravatar
Total Posts 1203
Proud member of the mojoPortal team

Help support mojoPortal!
Add-on modules

Re: Help with a Skin made with Artisteer 2.5

You should be able to do this just with CSS, no layout.master changes needed. Here's a starting point for you, and you can work from here with FireBug:

h2.moduletitle {
    background: url("/Data/Sites/1/skins/ccds5-artisteer-24/images/blockheader.png") no-repeat scroll left center transparent;
    height: 32px;
}

.art-post-body {
  padding: 0px;
}

I was able to get this going in just a few minutes of experimentation with FireBug.

I recommend you place your CSS changes in the style-artisteer-overrides.css file, not directly in the style.css file. That way they won't be lost if you make changes and re-export from Artisteer.

Jamie

 

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