Hola,
 
Me gustaría saber cómo poner un enlace al fondo que está en el body. 
El fondo lo he puesto así:  
Código:
 body {
    font-size: 14px;
    line-height: 1.6em;
    color: #333;
	font: 12px/16px Arial,Helvetica,sans-serif;
    background-image: url('/wp-content/themes/entrenamiento/images/hsn/background_men_normal.jpg');
   background-attachment: fixed;
   background-position: top center;
   background-repeat: no-repeat;
 }  
   
 @media screen and (max-width: 1366px){
	 body {
    font-size: 14px;
    line-height: 1.6em;
    color: #333;
	font: 12px/16px Arial,Helvetica,sans-serif;	 
   background-image: url('/wp-content/themes/entrenamiento/images/hsn/background_men_min.jpg');
   background-attachment: fixed;
   background-repeat: no-repeat;
   background-position: top center;
   }
 }
  Pero no tengo ni idea de poner el enlace, he probado un par de cosas pero nada, ¿alguna sugerencia?