MS SQL Management Studio – Save changes is not permitted – The changes you have made require the following tables to be dropped and re-created

If when using Microsoft SQL Server Management Studio to amend a table you encounter a dialog box saying: Saving changes is not permitted. The changes you have made require the following tables to be dropped and re-created. You have either made changes to a table that can’t be re-created or enabled the option prevent saving

Read More

Force the compatibility mode in IE8

If your website doesn’t display properly in IE8, then it’s recommended that you amend your code, but in the meantime you could force Internet Explorer 8 to run in the compatibility mode. Simply add the below line to the top of the <head></head> section of your website: <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> An example of this is place would be:

Read More

Bullet point spacing with css

To increase the spacing between bullet points with CSS simple add the below code to your .css file: ul li { margin:.5em 10% .5em 0; } Obviously you can change the values to reach your desired spacing, but the above works well and looks neat and tidy. An example using this method would look like

Read More