Meno of Artisteer 3 skin not display ok

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.
6/29/2011 5:35:51 PM
Gravatar
Total Posts 40

Meno of Artisteer 3 skin not display ok

I make a skin with artisteer 3. This is the page generated by artisteer:

http://oai.uppersoft.com.ar/Data/Sites/1/skins/OAI-1/page.html

But if I apply the skin i see

http://oai.uppersoft.com.ar

Any Idea???

6/29/2011 6:28:27 PM
Gravatar
Total Posts 70

Re: Meno of Artisteer 3 skin not display ok

Skin menu:

 <div class="art-nav">
                 skipped
                 <ul class="art-menu">
                  skipped
                 </ul>
 </div>
Site menu:

<div class="art-nav-outer" id="ctl01_SiteMenu1_ctl00">
  <ul class="art-hmenu">
    skipped
  </ul>

</div>

As for me it is often required to replace in style.css the .art-menu... into .art-hmenu... something like below:

/* begin Menu */
/* menu structure */

.art-hmenu a, .art-hmenu a:link, .art-hmenu a:visited, .art-hmenu a:hover
{
    outline: none;
}

...etc

Regards!

6/29/2011 7:34:40 PM
Gravatar
Total Posts 40

Re: Meno of Artisteer 3 skin not display ok

Thank Igor, work better but not fine. I can´t see what is the problem

Any other ideas?

6/29/2011 7:36:40 PM
Gravatar
Total Posts 40

Re: Meno of Artisteer 3 skin not display ok

Whith changues of Igor:

Correct page:

http://oai.uppersoft.com.ar/Data/Sites/1/skins/OA1/page.html

Site:

http://oai.uppersoft.com.ar/home.aspx

6/30/2011 6:12:05 AM
Gravatar
Total Posts 70

Re: Meno of Artisteer 3 skin not display ok

Hi Gerardo. Just try to understand which skin parts are rendered incorrect and it will help you to found the reason in sources:

Site:

1: <div id="art-page-background-middle-texture">
    <div id="art-main">

2: <div class="art-nav">
                 <div class="art-nav-l"></div><div class="art-nav-r"></div>
                    <div class="art-nav-outer" id="ctl01_SiteMenu1_ctl00">
                       <ul class="art-hmenu">  skipped

Artisteer:

1: <div id="art-page-background-glare">
        <div id="art-page-background-glare-image">
    <div id="art-main">

2: <div class="art-nav">
                 <div class="l"></div>
                 <div class="r"></div>
                 <ul class="art-menu">

---

FYI: you could play with 2 files in that situation IMHO: style.css and layout.Master

fix from my layout.Master for art-nav:

     <div class="art-nav">
        <div class="l"></div> <div class="r"></div>
<!--  <div class="art-nav-l"></div> <div class="art-nav-r"></div> -->
                    <portal:SiteMenu ID="SiteMenu1" runat="server" UseTreeView="false"
                        HideMenuOnSiteMap="false" Direction="Horizontal" ></portal:SiteMenu>
                </div>

---

BTW: Best regards to Taekwon-do on Argentina! :)

6/30/2011 7:58:19 AM
Gravatar
Total Posts 40

Re: Meno of Artisteer 3 skin not display ok

Thank you!!! Very much!!! This work fine.

 

Reagards!!!

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