I need a simple code to place an image before the menu to push it farther to the right.
http://styles.vforums.co.uk
Thanks in advance.
http://support.virtualforums.co.uk/board/database/action/vie w_topic/topic/1414
Use that code It will center the menu
I need a simple code to place an image before the menu to push it farther to the right.
http://styles.vforums.co.uk
Thanks in advance.
A pretty quick modification to Wrighty's code
<script>
/*Add Menu Buttons
Created By Wrighty
Modified to add to the left
support.virtualforums.co.uk*/
var menu = get('menu_buttons','id').getElementsByTagName('font')[0];
function do_menu_left(img_src,link, guest){
if(guest){
menu.innerHTML= "<a href="+link+"><img src='" +img_src+"' border=0></a> :: " + menu.innerHTML;
}else{
if(vf_username != 'guest'){
menu.innerHTML= "<a href="+link+"><img src='"+img_src+"' border=0></a> ::" + menu.innerHTML;
}
}
}
do_menu_left('IMAGE LINK','URL TO LINK TO', false);
</script>
That should work
(modify/add more of the red part)
I was gonna center the menu, but I didn't want to.
Thanks frufru.
I was gonna center the menu, but I didn't want to.
Thanks frufru.
you're welcome