problem trying to skin gallery

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.
5/8/2012 3:14:02 AM
Gravatar
Total Posts 192

problem trying to skin gallery

hi Joe.

I really love how you have made the portal perfectly skinnable.

but something could be better with the gallery.

check this: http://sere.ir/%D8%A2%D9%84%D8%A7%D8%B4%D8%AA.aspx

on the bottom of the page, you see a gallery.

modules in this site have a background color, and a border, which is all specified for "modulecontent" class.

but I had a problem with gallery, because it renders two "modulecontent"s, and they are not distinguishable, so the control had two modulecontents which both had a border specified.

the solution could be one of them have an additional css class, or an id specified, or something.

the most I could do with the gallery element you see on that page was I specified background and border for "mojogallery" class. but I had to remove the bottom border, and right and left borders don't come down to the end.

so can you please, either change class of one of the two "modulecontent"s or add a class or id to one of them, or anything, so that they both wont have borders?

5/8/2012 12:57:31 PM
Gravatar
Total Posts 18439

Re: problem trying to skin gallery

Hi,

I agree with you it should not have nested panels with modulecontent class. This is now fixed in the source code repository.

Note however that you can remove the border on the inner div without need for any new ids or classes like this:

.modulecontent .modulecontent { border:none; }

The above selector selects an element with the class modulecontent that is inside another element with the class modulecontent.

Best,

Joe

5/9/2012 8:33:54 AM
Gravatar
Total Posts 192

Re: problem trying to skin gallery

thanks.

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