Posted June 5th 2013, 1:28 am
okay so i was thinking of maybe doing some research how to do that, but failed miserably haha
if i explain it more; i was thinking of hiding the navigation links and when a person would hover over the logo they would display on it.
i browsed support forum a little and found some code that a member provided:
and if it helps you, this is the forum that has a similar thing: http://z10.invisionfree.com/A_THOUSAND_FIREFLIES/index.php?
but unfortunately it's not hosted by forumotion, but invision free so i don't even know if it's possible on fm.
if i explain it more; i was thinking of hiding the navigation links and when a person would hover over the logo they would display on it.
i browsed support forum a little and found some code that a member provided:
- Code:
jQuery(document).ready(function(){
jQuery('img#i_logo').hover( // define onmouseenter
function(){
/* add code to display content with CSS transitions (I allowed myself to check
* their source code, they are using transitions)
*/
}
,
function(){ // define onmouseleave
// Here, add code to make content invisible again
});
});
and if it helps you, this is the forum that has a similar thing: http://z10.invisionfree.com/A_THOUSAND_FIREFLIES/index.php?
but unfortunately it's not hosted by forumotion, but invision free so i don't even know if it's possible on fm.