Linking Forum Logo

Avatar
  • updated
  • Answered

Hi! A have a question concerning a logo on my community site.

I'd like to insert a link to my Forum Logo in a specific way. My Forum Logo is already linked to my company's main site, but I'd like to insert a little note above it when I hover my cursor over it. I can do it with topics on my community site, but not on the Forum Logo.


Something like that, but on the linked Forum Logo picture.

Image 8799


Is it possible? If yes, how can I do it?

How would you rate the customer service you received?

Satisfaction mark by K. Bobrowska 8 years ago

Add a comment about quality of support you received (optional):

Pinned replies
Avatar
Vladimir Mullagaliyev co-founder
  • Answer
  • Answered

Hello,

We do not have this parameter for a forum logo.

But you can do it with CustomCSS. We've applied an example in your Progect settings-> Project -> CustomJS/CSS -> CustomJS.


<script>
initqueue.push(function(){
    $("#module_22 img").attr("title", "Forum title").attr("data-toggle","tooltip");
});
</script>

Description:

  • initqueue - our queue variable that we start when page is loaded.
  • #module22 - your module ID. You can check it in the page source code.
  • "Forum title" - replace this text with yours.
Avatar
Vladimir Mullagaliyev co-founder
  • Answer
  • Answered

Hello,

We do not have this parameter for a forum logo.

But you can do it with CustomCSS. We've applied an example in your Progect settings-> Project -> CustomJS/CSS -> CustomJS.


<script>
initqueue.push(function(){
    $("#module_22 img").attr("title", "Forum title").attr("data-toggle","tooltip");
});
</script>

Description:

  • initqueue - our queue variable that we start when page is loaded.
  • #module22 - your module ID. You can check it in the page source code.
  • "Forum title" - replace this text with yours.