artisteer-30 skin error after BasePanel.cs's change in v3263

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.
12/16/2011 5:03:21 AM
Gravatar
Total Posts 46

artisteer-30 skin error after BasePanel.cs's change in v3263

Hi, joe

I get the latest code from hg.

I found you change Web\Controls\Panels\BasePanel.cs in v3263

////////////////////////////////////////////////////////////////////////////////////

@@ -132,20 +132,20 @@
case UIHelper.LeftColumnId:
case UIHelper.RightColumnId:

- if (sideColumnxtraCssClasses.Length > 0)
- {
+ //if (sideColumnxtraCssClasses.Length > 0)
+ //{
extraCssClasses = sideColumnxtraCssClasses;
- }
+ //}

- if (sideColumnLiteralExtraTopContent.Length > 0)
- {
+ //if (sideColumnLiteralExtraTopContent.Length > 0)
+ //{
literalExtraTopContent = sideColumnLiteralExtraTopContent;
- }
+ //}

- if (sideColumnLiteralExtraBottomContent.Length > 0)
- {
+ //if (sideColumnLiteralExtraBottomContent.Length > 0)
+ //{
literalExtraBottomContent = sideColumnLiteralExtraBottomContent;
- }
+ //}

break;

//////////////////////////////////////////////////////////////////////

 if you change as above. all artisteer-30 skin will disorder  if the page's column more than one column,

if get rid of the // and restore BasePanel.cs as it in the v3262, then all will be ok!

Thanks!

12/16/2011 7:14:36 AM
Gravatar
Total Posts 18439

Re: artisteer-30 skin error after BasePanel.cs's change in v3263

Hi John,

Update your theme.skin file with these configurations for Artisteer 3.0:

<portal:ModuleTitleControl runat="server"
DetectSideColumn="true"
Element="h2"
SideColumnElement="h3"
UseModuleHeadingOnSideColumns="false"
LiteralExtraTopContent="<div class='art-postmetadataheader'>"
LiteralExtraBottomContent="</div>"
SideColumnLiteralExtraTopContent="<div class='art-blockheader'><div class='l'></div><div class='r'></div><div class='art-header-tag-icon'><div class='t'>"
SideColumnLiteralExtraBottomContent="</div></div></div>"
ExtraCssClasses="art-postheader"
SideColumnExtraCssClasses="t"
/>

<portal:HeadingControl runat="server"
LiteralExtraTopContent="<div class='art-postmetadataheader'>"
LiteralExtraBottomContent="</div>"
ExtraCssClasses="art-postheader"
/>

<portal:OuterWrapperPanel runat="server"
Element="div"
ExtraCssClasses="art-post"
RenderContentsOnly="false"
LiteralExtraTopContent="<div class='art-post-tl'></div><div class='art-post-tr'></div><div class='art-post-bl'></div><div class='art-post-br'></div><div class='art-post-tc'></div><div class='art-post-bc'></div><div class='art-post-cl'></div><div class='art-post-cr'></div><div class='art-post-cc'></div><div class='art-post-body'>"
LiteralExtraBottomContent="</div><div class='cleared'></div>"
DetectSideColumn="true"
SideColumnxtraCssClasses="art-block"
SideColumnLiteralExtraTopContent="<div class='art-block-tl'></div><div class='art-block-tr'></div><div class='art-block-bl'></div><div class='art-block-br'></div><div class='art-block-tc'></div><div class='art-block-bc'></div><div class='art-block-cl'></div><div class='art-block-cr'></div><div class='art-block-cc'></div><div class='art-block-body'>"
SideColumnLiteralExtraBottomContent="</div>"
/>

<portal:OuterBodyPanel runat="server"
Element="div"
ExtraCssClasses="art-postcontent"
RenderContentsOnly="false"
DetectSideColumn="true"
SideColumnxtraCssClasses="art-blockcontent"
SideColumnLiteralExtraTopContent="<div class='art-blockcontent-tl'></div><div class='art-blockcontent-tr'></div><div class='art-blockcontent-bl'></div><div class='art-blockcontent-br'></div><div class='art-blockcontent-tc'></div><div class='art-blockcontent-bc'></div><div class='art-blockcontent-cl'></div><div class='art-blockcontent-cr'></div><div class='art-blockcontent-cc'></div><div class='art-blockcontent-body'>"
SideColumnLiteralExtraBottomContent="</div><div class='cleared'></div>"
/>

I will be shipping updated versions of the artisteer 3.0 skins in our extraskins.zip download for the coming release and will include some new skins for artisteer 3.1

Best,

Joe

12/16/2011 10:43:27 AM
Gravatar
Total Posts 46

Re: artisteer-30 skin error after BasePanel.cs's change in v3263

thanks joe! i know how to do it now.

only need change

SideColumnLiteralExtraBottomContent=""

to 

SideColumnLiteralExtraBottomContent="</div>"

in  portal:OuterWrapperPanel,

then all will be ok!

thanks for your effort to make it be so compatible with artisteer 3.0.

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