Add the following to your CSS:
.featured_box h3 a {
color: #FF0080; <!-- Header Colour -->
}
You also need to remove your second <head> section:
//<![CDATA[
var screen_res = "1920 x 1200";
//]]>
</script>
</head>
<body>
<head>
<title>Harlequin Studio</title>
<meta name="description" content="Harlequin Studio is the home of contemporary graphic design and beautiful digital art. Focused on turning your ideas into reality. Bringing your identity and values to life with logos, flyers, brochures, business cards and much much more." />
<meta name="keywords" content="Harlequin, Studio, Graphic, Art, Design, Digital, logo, Flyers, Brochures, Business, Cards" />
<meta name="robots" content="index, follow" />
</head>
<div id="main_container">
This should be:
---------------------------------------------------------------------------------------------------------------------
//<![CDATA[
var screen_res = "1920 x 1200";
//]]>
</script>
<title>Harlequin Studio</title>
<meta name="description" content="Harlequin Studio is the home of contemporary graphic design and beautiful digital art. Focused on turning your ideas into reality. Bringing your identity and values to life with logos, flyers, brochures, business cards and much much more." />
<meta name="keywords" content="Harlequin, Studio, Graphic, Art, Design, Digital, logo, Flyers, Brochures, Business, Cards" />
<meta name="robots" content="index, follow" />
</head>
<body>
<div id="main_container">
---------------------------------------------------------------------------------------------------------------------
If you want to change the hover colour of the titles then you need to edit this piece of code:
.featured_box h3 a:hover {
color: #7d7d7d;
}
Good luck with your website
