Artisteer + RadEditor strange result on Contact page ??

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.
7/21/2012 9:28:55 PM
Gravatar
Total Posts 101

Artisteer + RadEditor strange result on Contact page ??

Hi,

I created a skin in Artisteer and its been working fine.

I recently upgrade to the absolute latest version and noticed a funny render on the footer of the contact page ONLY.

Main page renders ok.  <--- Click here

Contact page renders with extra white space   <-- Click here

Both pages render the same code:

<p class="art-page-footer">
<br>
<br>
</p>

I'm guessing its something to do with a style being set by the edit box ?
In edit more it displays ok also..

Any idea what CSS would be causing this issue ?

Thanks

Andrew

 

 

7/21/2012 10:31:12 PM
Gravatar
Total Posts 216
Community Expert

mojoPortal Hosting & Design @ i7MEDIA!

Re: Artisteer + RadEditor strange result on Contact page ??

Hi Andrew,

I'm not very familiar with Artisteer and I don't know why it's rendering that particular paragraph, but I can tell you that the reason it is breaking on the contact page and not on the others is that the paragraph "art-page-footer" is being added inside of the containing div "art-sheet" on the contact page.

The difference is that on the other pages it is being added outside and below the containing div "art-sheet", so the white background is not being pulled down to wrap it.

If you're not using the footer paragraph, I suggest adding the following CSS to your skin.

p.art-page-footer {
     display: none;
}

Either way, it still might be a good idea to look into why the paragraph is being added to the DOM in the first place.

Hope this helps,
-Isaac

7/21/2012 10:36:40 PM
Gravatar
Total Posts 216
Community Expert

mojoPortal Hosting & Design @ i7MEDIA!

Re: Artisteer + RadEditor strange result on Contact page ??

Hey Andrew,

I just thought of something else - it's possible that you have a "<p>" tag in your layout.master and don't have the end tag "</p>".
Given the placement, it's likely that the end tag is missing from a paragraph in the footer.

Hope this helps,
-Isaac

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