Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Google

Become a Subscriber!

Subscribe to our Patreon, and get image uploads with no ads on the site!

Read more...

Do you ever get trapped in the quotation box?

What's Hot
You know that time when you replied to someone’s comment, and found yourself typing into their quotation. There is a way out.

Littlejonny said: … I'm trapped typing in this grey box and don't know how to get out....!
Press the </> icon, and you will see all the hidden characters. 



Like this:

<blockquote class="Quote">
  <div><a rel="nofollow" target="_blank">Littlejonny</a> said: By the way I'm trapped typing in this grey box and don't know how to get out....!</div>
</blockquote>
<br>

Place your cursor at the end after “<br>” and continue typing
Tree recycler, and guitarist with http://www.sylviastewartband.co.uk/
0reaction image LOL 1reaction image Wow! 9reaction image Wisdom
«1

Comments

  • S56035S56035 Frets: 2099
    Interesting. I only get this using Chrome on Android. Thanks for the tip.
    0reaction image LOL 0reaction image Wow! 0reaction image Wisdom
  • KittyfriskKittyfrisk Frets: 26612
    Or hit the browser return/back arrow, kill any saved drafts & then start again?
     I have noticed if you have typed something below the quotation box that you tried to edit, if you delete past the first character, you end up stuck in the quotation box...  :#
    0reaction image LOL 0reaction image Wow! 2reaction image Wisdom
  • Or hit the browser return/back arrow, kill any saved drafts & then start again?
     I have noticed if you have typed something below the quotation box that you tried to edit, if you delete past the first character, you end up stuck in the quotation box...  :#

    Yes. And it's bloody annoying when it happens. 
    6reaction image LOL 0reaction image Wow! 0reaction image Wisdom
  • Or hit the browser return/back arrow, kill any saved drafts & then start again?
     I have noticed if you have typed something below the quotation box that you tried to edit, if you delete past the first character, you end up stuck in the quotation box...  :#

    Yes. And it's bloody annoying when it happens. 

    It’s not like it’s hard to avoid though 
    3reaction image LOL 0reaction image Wow! 1reaction image Wisdom
  • Benm39Benm39 Frets: 1097
    Aha! Thanks :)
    0reaction image LOL 0reaction image Wow! 0reaction image Wisdom
  • VimFuegoVimFuego Frets: 19137
    I wonder how many brave souls have become lost in the quotation box, falling prey to others trapped in there, unable to escape or go on. We should all bow our heads in a moments reflection of our fallen. 

    I'm not locked in here with you, you are locked in here with me.

    1reaction image LOL 0reaction image Wow! 2reaction image Wisdom
  • Philly_QPhilly_Q Frets: 33873
    Good tip.  Amazingly, I'd managed to figure that one out myself, I don't really understand what I'm doing in the world of "</>" but I keep trying until it works.  I hate untidy posts.  :)  Forget about doing that on a phone, though...
    0reaction image LOL 0reaction image Wow! 0reaction image Wisdom
  • Splendid thanks
    0reaction image LOL 0reaction image Wow! 0reaction image Wisdom
  • fastonebazfastonebaz Frets: 4697
    edited November 2024
    Splendid thanks


    Doh, doesn't work on mobile, there's no option to get to the html anguished 
    0reaction image LOL 0reaction image Wow! 0reaction image Wisdom
  • fastonebazfastonebaz Frets: 4697
    edited November 2024
    Splendid thanks


    Doh, doesn't work on mobile, there's no option to get to the html anguished 
    Ohhhhh yes there is, you just need to rotate yr phone into landscape mode and the html button appears and can be clicked and so it works!
    0reaction image LOL 0reaction image Wow! 0reaction image Wisdom
  • Philly_QPhilly_Q Frets: 33873
    Splendid thanks


    Doh, doesn't work on mobile, there's no option to get to the html anguished 
    Ohhhhh yes there is, you just need to rotate yr phone into landscape mode and the html button appears and can be clicked and so it works!
    Good tip.  I'm too clumsy with my phone to do that, I think, but good to know it's possible.
    0reaction image LOL 0reaction image Wow! 0reaction image Wisdom
  • Thank you! I am cackhanded at typing on my phone so this happens to me a lot!
    0reaction image LOL 0reaction image Wow! 0reaction image Wisdom
  • droflufdrofluf Frets: 5898


    LET ME OUT!
    A guitar doesn't care how good you are, all it asks for is it's played.

    Trading feedback thread:https://www.thefretboard.co.uk/discussion/172761/drofluf

    3reaction image LOL 0reaction image Wow! 0reaction image Wisdom
  • BillDLBillDL Frets: 14668
    edited November 2024
    Philly_Q said:
    Good tip.  Amazingly, I'd managed to figure that one out myself, I don't really understand what I'm doing in the world of "</>" but I keep trying until it works.  I hate untidy posts.    Forget about doing that on a phone, though...
    The <something> and </something> are "tags" of the HTML code that creates web pages.  It's easier to follow if you treat these tags as opening and closing markers.  The <div> tag creates a new paragraph, and to end the paragraph you need a closing </div> tag.  The only tag in the example given that doesn't need to be closed with the / is <br> that creates a new line (break).

    <blockquote class="Quote">
      <div><a rel="nofollow" target="_blank">Littlejonny</a> said: By the way I'm trapped typing in this grey box and don't know how to get out....!</div>
    </blockquote>
    <br>

    Within the opening < and > of a tag you can make the text or object display in a certain way by referring to an accompanying attribute that's found either elsewhere in the same page of code or an external "script" or "style" file that's fetched in when the page loads, for example <blockquote class="Quote">  Everything that happens from there until the "blockquote is closed with the </blockquote> is displayed in the specified manner, i.e. within the grey box as specified by the "Quote" class.

    Within the <blockquote> and </blockquote> there is a <div> that creates the paragraph inside the grey box and the paragraph is closed off again at the end with a </div>
    Within that you have the <a> and </a> that creates a clickable hyperlink that should open the specified "target".
    It would normally have a web address / a URL as the target using "href=", like this:
    <a rel="nofollow" target="_blank" href="https://www.thefretboard.co.uk/profile/5377/Philly_Q"> Link To PhillyQ's Profile</a>

    rel="nofollow" is used by Google, to specify that the Google search spider should not follow that link.
    target="_blank" tells the browser to open the target of the link in a new window or tab.
    The text between the > and </a> is the text that will be displayed as the clickable link like THIS
    All the other text after the </a> and before the </div> is displayed as normal text in the grey blockquote box.

    When Roland has suggested flipping over to the HTML code display and typing something after the <br>, it is creating new standard text outside and below the grey blockquote box.  You could also type <div>.add some text here.</div> to place your new text in a new paragraph below the grey box and then flip back to the normal editing mode where you can then delete whatever ended up wrongly inside the grey box.
    0reaction image LOL 0reaction image Wow! 1reaction image Wisdom
  • relic245relic245 Frets: 1555
    Splendid thanks


    Doh, doesn't work on mobile, there's no option to get to the html anguished 
    Ohhhhh yes there is, you just need to rotate yr phone into landscape mode and the html button appears and can be clicked and so it works!
    Doesn't work on my phone.

    Perhaps it depends on screen size?
    0reaction image LOL 0reaction image Wow! 0reaction image Wisdom
  • Splendid thanks


    Doh, doesn't work on mobile, there's no option to get to the html anguished 
    Ohhhhh yes there is, you just need to rotate yr phone into landscape mode and the html button appears and can be clicked and so it works!
    Testing
    0reaction image LOL 0reaction image Wow! 0reaction image Wisdom
  • SporkySporky Frets: 38869
    Rotating works on tablet. 
    "not even Sporky can see around corners just yet" - thecolourbox
    0reaction image LOL 0reaction image Wow! 0reaction image Wisdom
  • There was no <br> at the end when I pressed the button though. Last line was </blockquote>. Didn't matter because I typed after the block quote line and it worked as well. 
    0reaction image LOL 0reaction image Wow! 0reaction image Wisdom
  • SporkySporky Frets: 38869
    There was no <br> at the end when I pressed the button though. Last line was </blockquote>. Didn't matter because I typed after the block quote line and it worked as well. 

    Oops I'm stuck
    But then I escaped!
    "not even Sporky can see around corners just yet" - thecolourbox
    1reaction image LOL 0reaction image Wow! 0reaction image Wisdom
  • Emp_FabEmp_Fab Frets: 28303
    Never mind that....  what about deleting drafts ?  It saves a draft every 2 microseconds and you need the accuracy of Robin Hood to hit that little 'x' to delete them.
    0reaction image LOL 0reaction image Wow! 2reaction image Wisdom
Sign In or Register to comment.