layout.master issue in IE 7

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

Please do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.

This forum is for discussing mojoPortal development

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

You can monitor commits to the repository from this page. We also recommend developers to subscribe to email notifications in the developer forum as occasionally important things are announced.

Before posting questions here you might want to review the developer documentation.

Do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.
This thread is closed to new posts. You must sign in to post in the forums.
8/10/2010 2:18:20 AM
Gravatar
Total Posts 2

layout.master issue in IE 7

 

 Hello friends.

 I created new skin in Artisteer.

 Its looking fine in firefox but its not working well in IE browser.

 I have following issue.

 When I open my website in IE 7, I see that some section are rendered in table format.

  for example

      <DIV class=art-nav>..................

     <TABLE class=art-content-layout>...................

 

 When I click on URL for same path then it rendered in div tag.

   <div class="art-nav">..............

   <div class="art-content-layout">...................

 

I put one image in <div class="art-content-layout">here</div>. but when it render in table format then this image is not visible there while it renders in div then image is there but not display in browser.

my image tag looks like

<img src="Data/Sites/1/skins/mySkin/images/top-cove.png" />

 

I have not this issue in other browser.

 

Can anyone tell me where I am doing wrong or any solution?

 

For your reference, you can check this URL.

http://219.64.82.144/MAPOLL2/home.aspx

 

Thanks

Imrankhan

8/10/2010 12:35:46 PM
Gravatar
Total Posts 18439

Re: layout.master issue in IE 7

Probably the the Artisteer javascript is re-writing that markup for IE to solve some layout issue.

I don't know any solution for it, best if you add images from within Artisteer then it should work correctly when you export the design, but if you modify the design by hand you cannot solve this kind of problem because the artisteer script doesn't know about your custom image.

8/11/2010 12:02:34 AM
Gravatar
Total Posts 2

Re: layout.master issue in IE 7

Hey Joe.

Thanks for your reply.

Actually I did same thing that you have suggested and my problem was solved.

Thanks again.

I have another problem.

when I login in my website, it redirects me to previous visited url instead of that I want to redirect to default.aspx page only.

For that, Does mojo portal provide any setting where we can change or I have to change coding?

 

Thanks

Imrankhan

8/11/2010 6:42:22 AM
Gravatar
Total Posts 18439

Re: layout.master issue in IE 7

<!--
Generally you should leave this blank and let mojoportal handle the redirecting after a user signs in.
However if you want to force redirecting to some specific page you can force it with this setting:
<add key="PageToRedirectToAfterSignIn" value="/yourcustompage.aspx" />
Warning! Do not use this in a multi site installation. This is a global setting and will affect all sites.
If you change this from the default behavior it may cause inconvenience for your users.
Suppose a user is deciding to buy a download product in your store, they need to login to complete the purchase
currently the login will redirect back to the store page or whatever page the user was on and this is the desired action
so if you force the redirect somewhere else you break this.
Same thing if the user wants to post in the forums but needs to login, the default behavior will
redirect him back to the forum thread, if you change it you break this.
-->
<add key="PageToRedirectToAfterSignIn" value=""/>

You could put that setting in user.config and set the value to /Default.aspx, but I recommend against it for the reasons shown in comments. 

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