Posted by (JavaScript must be enabled to view this email address) on Mon 13 Oct 2008

CRM Sandpit
Microsoft Dynamics CRM provides flexible and familiar business software that allows your organisation to streamline sales, marketing and service based operations. Powerful integration features with other Microsoft Product families enables your organisation to leverage previous investments in Microsoft Technologies.

Dynamics CRM can be used by a wide range of organisations, ranging from small start-up companies wishing to journalise customer activity in a centralised location to large multi-national coprorations seeking to segment different parts of their business processes.

Ok…so that’s just sales talk like every other company out there. Don’t take our word for it, drop us an email using this link and try it for yourself using the CRMSandpit.

What is the CRMSandpit?

In short its a no obligation trial of Microsoft Dynamics CRM. We can set up a user account for you, and you can do anything you want within CRM that you would be if you had installed it for yourself. The only difference is that its already set up and running for you and you don’t have to deal with the administrative headache of ensuring you have backups and a secured network.

If you decide to go ahead with an implementation of Dynamics CRM we can easily export the customisations and data you entered and import them into your live environment.

So what are you waiting for?



Posted by (JavaScript must be enabled to view this email address) on Tue 07 Oct 2008

Say you have two columns, a left and a right column. The left column is to be the navigation are and the right column the content. This is standard for most web sites.

What happens when you want to add a footer to the left column? for example your contact details? sure you could add lots of padding and margins etc but that would break your accessibility. I had a customer that wanted this exact feature in SharePoint 2007 recently.

To be able to have two columns you have to have three divs, the container then the left and right columns.

To maintain accessibility standards and have a screenreader be able to see the navigation, then the content, then the footer you need to do something a bit more sneaky than just pad the navigation.

create your html as below


[code lang=HTML]
<div id=“Container”>
<div id=“LeftNav”>...</div>
<div id=“Content”>...</div>
<div id=“LeftFooter”>...</div>
</div>

Now that you have the html you can style it using CSS.

  1. #Container
  2. {
  3. height: auto;
  4. width: 150em;
  5. margin: auto;
  6. clear: both;
  7. position: relative; /* you will see the importance of this shortly*/
  8. }
  9. #LeftNav
  10. {
  11. width: 35em;
  12. float: left;
  13. }
  14. #Content
  15. {
  16. width: 115em;
  17. float: right;
  18. }
  19. #LeftFooter
  20. {
  21. position: absolute;
  22. left: 1em;
  23. bottom: 1em;
  24. width: 13em;
  25. }

By setting the position of the container div to relative, you are then able to override any of its child containers using absolute values RELATIVE to the bounds of the container. This means that the left footer will always be at the bottom left (with a 1em margin) of its parent.



Page 1 of 1 pages

About our Blog

Brantas Limited specialise in Dynamics CRM, SharePoint and System Integration using the Microsoft Platform. We are all experienced developers in various fields with our own specialities complementing those of our team.

We have been working with SharePoint since 2003, including Installation and Administration, Migration, Development and Support.

RSS Feed