View Single Post
  #77  
Old 05-07-2008, 02:37 PM
photography's Avatar
photography Offline
pp regular
 
Join Date: Apr 2008
Location: Romania
Posts: 25
Send a message via Yahoo to photography
In light.css and dark.css files from the template search for:

#menu_browse_prev:hover, #menu_browse_prev:visited:hover

and

#menu_browse_next:hover, #menu_browse_next:visited:hover
and replace each block with this, accordind to each file:

light.css:
Code:
#menu_browse_prev:hover, #menu_browse_prev:visited:hover {
	background: url('../images/light/prev_btn.png') center center;
	background-repeat: no-repeat;
	cursor: pointer;
}

#menu_browse_next:hover, #menu_browse_next:visited:hover {
	background: url('../images/light/next_btn.png') center center;
	background-repeat: no-repeat;
	cursor: pointer;
}

dark.css:
Code:
#menu_browse_prev:hover, #menu_browse_prev:visited:hover {
	background: url('../images/dark/prev_btn.png') center center;
	background-repeat: no-repeat;
	cursor: pointer;
}

#menu_browse_next:hover, #menu_browse_next:visited:hover {
	background: url('../images/dark/next_btn.png') center center;
	background-repeat: no-repeat;
	cursor: pointer;
}
PS. Make sure the path to each arrow image is correct (i mean url('../images/dark/next_btn.png').
__________________
· I'm sorry if I make some mistakes here and there, english is not my native language.
· Successfully using this method to fight spam since 01.03.2008. Spam comments encountered so far: 0.
· photography - my website

Last edited by photography; 05-07-2008 at 07:20 PM.
Reply With Quote