Blog | 3 Olive Studios

Friday, April 3, 2009

Quick tip: Website meta tag description

In your description meta tag, have a strong call to action. Make sure to include your phone number and address if relevant.

Example:

<meta name="description" content="3 Olive Studios is a web design, graphic design, and marketing company in Boston. Call us at 857.350.4611" />

Labels:

Thursday, March 26, 2009

Quick tip: style links

To make all links the color purple in the site use the following example in the CSS

a{
color:purple;
}

To make all the links in one specific div red instead of purple add this example to the CSS:

.div_name a{
color:red;
}

Labels:

Quick tip: Google Analytics

To track your websites statistics for free sign up for Google Analytics.

http://www.google.com/analytics/

Labels:

Tuesday, March 24, 2009

Quick tip: Iframes in ie7

When using iframes in Internet Explorer 7, a border shows around the frame. To remove this border enter frameborder="0" as an attribute to the iframe tag. See below for an example

< iframe src="your_source.html" id="your_id"
scrolling="no" frameborder="0" >

Labels:

Quick tip: SEO

To help with your site's search engine optimization be sure to put important information in heading tags.

Example:
<h1> This is important </h1>


Labels: