problem with neatupload, page does not postback, and refreshes.

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.
3/7/2012 9:22:35 AM
Gravatar
Total Posts 2239

Re: problem with neatupload, page does not postback, and refreshes.

Hi,

If the multiple CSS files is making it difficult for you to find the elements/selectors, combine them all into one file. There is no requirement to have separate files. To do this, open your style.config and make note of the order in which the files are listed. Copy the contents of the files into a new file in the same order. Finally, remove all of the entries for the files you merged from the style.config.

For example, your style config may look like this:


<file>style.css</file>
<file>styleblog.css</file>
<file>styleforum.css</file>

Copy the contents of the styleblog.css file to the bottom of the style.css file and then copy the contents of the styleforum.css file to the bottom of the style.css file. Remove the entries for styleblog.css and styleforum.css from the style.config so it looks like this:


<file>style.css</file>

Now the style for the blog and forum are included in the style.css file so it should be easy to find the elements/selectors for those modules. You can do this for the rest of the css files in your skin.

HTH,
Joe D.

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