I have added 4 custom sections into Umbraco and think I have come across a limitation. The forth section does not appear in the sections list within the 'edit user' section of umbraco. This means that I cannot give users access to this section via the Umbraco interface. I have however added permissions to this section by directly adding the permission to the table 'umbracoUser2app'
So my first question is: Is there a limit to the number of custom sections you can add to Umbraco?
After adding this section manually I then noticed another problem with the interface. The sections area of the Umbraco interface has a fixed height as shown below:
Custom Section Limit
I have added 4 custom sections into Umbraco and think I have come across a limitation. The forth section does not appear in the sections list within the 'edit user' section of umbraco. This means that I cannot give users access to this section via the Umbraco interface. I have however added permissions to this section by directly adding the permission to the table 'umbracoUser2app'
So my first question is: Is there a limit to the number of custom sections you can add to Umbraco?
After adding this section manually I then noticed another problem with the interface. The sections area of the Umbraco interface has a fixed height as shown below:
<div class="boxbody">
<div style="width: 325px; height: 94px;" class="content" id="PlaceHolderAppIcons_content">
<!-- Other Markup Here -->
</div>
</div>
This means that on low resolution windows the sections become hidden depending on how small your browser window is.
My second question therefore is: How do you override the fixed height (94px) that is being given to this container?
Cheers,
Marc
Just found an answer to the second question:
If you edit the style in umbraco/css/umbracoGui.css to the following:
#PlaceHolderAppIcons_content{overflow:hidden;height:auto!Important}
height:auto!Important will override the fixed height.
Just realised. My Mistake!!!!!
If you dont resave the web.config file the sections list is cached. Resaving the web.config file solved my issue.
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.