How to change forum post's to a image? Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
4 posters

    How to change forum post's to a image?

    Red Rose
    Red Rose
    New Member


    Posts : 7
    Reputation : 1
    Language : English

    How to change forum post's to a image? Empty How to change forum post's to a image?

    Post by Red Rose June 29th 2016, 8:49 pm

    how do i change my forum post's from text to a image/banner?
    Nemo
    Nemo
    Active Poster


    Male Posts : 1203
    Reputation : 119
    Language : Greek, English, French

    How to change forum post's to a image? Empty Re: How to change forum post's to a image?

    Post by Nemo June 29th 2016, 9:08 pm

    Hello,

    I do not understand what you are specifically asking for, could you please explain your question?

    Hello
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51554
    Reputation : 3523
    Language : English
    Location : United States

    How to change forum post's to a image? Empty Re: How to change forum post's to a image?

    Post by SLGray June 29th 2016, 9:19 pm

    Do you mean the topic title?



    How to change forum post's to a image? Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    Red Rose
    Red Rose
    New Member


    Posts : 7
    Reputation : 1
    Language : English

    How to change forum post's to a image? Empty Re: How to change forum post's to a image?

    Post by Red Rose June 29th 2016, 9:31 pm

    yes the topic title
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51554
    Reputation : 3523
    Language : English
    Location : United States

    How to change forum post's to a image? Empty Re: How to change forum post's to a image?

    Post by SLGray June 29th 2016, 10:23 pm

    Sorry, but no.



    How to change forum post's to a image? Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    Ace 1
    Ace 1
    Helper
    Helper


    Male Posts : 843
    Reputation : 64
    Language : English - French?
    Location : Druid Hill Park

    How to change forum post's to a image? Empty Re: How to change forum post's to a image?

    Post by Ace 1 June 30th 2016, 10:21 am

    Heya @Red Rose like SLGray said, you can't convert a text node to an image. But I think making the text unselectable would result in what you're aiming for Wink
    There are actually two ways to do this. You can choose whichever you prefer.

    1. Using CSS

    Administration Panel >> Display >> Colors >> CSS Stylesheet and add this code:

    Code:
    a.topictitle { user-select: none; }

    2. Using JavaScript

    Administration Panel >> Modules >> HTML & JavaScript >> Javascript codes management (make sure Javascript codes are enabled) >> Create a new Javascript

    Title: Unselectable Topic Titles
    Placement: In all the pages

    Javascript code:
    Code:
    $('a.topictitle').disableSelection;

    Whichever one you pick, they should disable people from selecting the topic titles. Sorry that there's really no way to convert text into an image without using an image hosting site or the PrntScr key. I hope this helps you Angel
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51554
    Reputation : 3523
    Language : English
    Location : United States

    How to change forum post's to a image? Empty Re: How to change forum post's to a image?

    Post by SLGray June 30th 2016, 8:17 pm

    @Ace 1 if you do that, how will you open and read the topic?



    How to change forum post's to a image? Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    Ace 1
    Ace 1
    Helper
    Helper


    Male Posts : 843
    Reputation : 64
    Language : English - French?
    Location : Druid Hill Park

    How to change forum post's to a image? Empty Re: How to change forum post's to a image?

    Post by Ace 1 June 30th 2016, 11:40 pm

    @SLGray using that code doesn't disable users from clicking the topic title, only from highlighting the text, thus making it seem like an image. thumright