Create Google Map API Key

To incorporate a Google map within your website requires an API key. This is a unique reference which is created within a Google account. To create an API key login to your Google account from a browser. Navigate to the page linked below which is the Google developers website. https://console.developers.google.com/flows/enableapi?apiid=maps_backend,geocoding_backend,directions_backend,distance_matrix_backend,elevation_backend,places_backend,geolocation&keyType=CLIENT_SIDE&reusekey=true Here’s a screen shot of […]

Read More… from Create Google Map API Key

Remove the Numbers at the end of a Facebook Page URL

Having created your Facebook page for a business or organisation it will have a string of numbers at the end. A typical Facebook page may look like: www.facebook.com/pages/CompanyName/948534834240283942 Removing the number at the end will simplify the page for visitors to remember www.facebook.com/pages/CompanyName How do I remove this number? From your Facebook profile page select […]

Read More… from Remove the Numbers at the end of a Facebook Page URL

The plus sign + in CSS

The plus sign in CSS is used to apply the associated declarations to the combined sibling elements. For example consider the difference between p{font-weight:bold;color:red;} and p+ p{font-weight:bold;color:red;} In the first example every paragraph element will be bold and coloured red. In the second example only those paragraphs with an adjacent paragraph will be bold and […]

Read More… from The plus sign + in CSS