Use CSS style to customize Enterprise Portal 2009 page

Sometimes we are asked to customize the layout of a page. The changes are often small and don’t necessarily require a change to the site master page or css file. For example, the client requests to hide the ‘Site Action’ menu on a Dynamics AX 2009 EP page to disable the user to change the page layout.

Now I use the purchase requisition lists as an example:

image

On the page, right click and select View Source

image

In the source file, the CSS class used in Site Action menu is .ms-siteaction

image

Open Visual Studio 2008 and edit the user control PurchReqTableList. In the PurchReqTableList.ascx file, add the following code

<style type="text/css">
    .ms-siteaction { display:none ;}
</style>

image

Save the change and update the portal.

Now you can see the ‘Site Action’ menu is gone.

image

Similarly, if we want to hide the breadcrumbs, we can use the same way as well.

image

Put the following code in the .ascx file:

<style type="text/css">
    .ms-siteaction { display:none ;}  .ms-sitemapdirectional { display: none; } .ms-titlearea { display: none; }
</style>

Save the changes and update the portal, you will find both the breadcrumbs and site action menu are gone.

image

This entry was posted in 未分类. Bookmark the permalink.

1 Response to Use CSS style to customize Enterprise Portal 2009 page

  1. Jena Xu says:

    Hi, Fred,

    It is very userful. Thanks

Leave a comment