AmberCutie's Forum
An adult community for cam models and members to discuss all the things!

coding BIO problems

  • ** WARNING - ACF CONTAINS ADULT CONTENT **
    Only persons aged 18 or over may read or post to the forums, without regard to whether an adult actually owns the registration or parental/guardian permission. AmberCutie's Forum (ACF) is for use by adults only and contains adult content. By continuing to use this site you are confirming that you are at least 18 years of age.
Apr 8, 2024
2
0
0
sup folks, so I trying to make clickable links in bio, they work on a chaturbate.global but if i browse from chaturbate.com links just open my own bio in a new tab
here's my code

<p style="position: absolute; right: 400px; top: 10px; height: 20%; max-height: 100px; z-index: auto;">
<a href=“https://t.me/evyworld”><img src=“https://i.ibb.co/44MNhzn/IMG-20240409-052356-275.png”></a></p>
<p style="position: absolute; right: 300px; top: 10px; height: 20%; max-height: 100px; z-index: auto;">
<a href=“https://www.instagram.com/evyshyone/”><img src="https://i.ibb.co/37fK14Y/IMG-20240409-053438-951.png"></a>
</p>
<p style="position: absolute; right: 200px; top: 10px; height: 20%; max-height: 100px; z-index: auto;">
<a href=“https://fans.ly/r/shyevy”><img src="https://i.ibb.co/xG5xWWy/IMG-20240409-053731-257.png"></a>
</p>

what am I missing?
 
Solution
You're using the wrong kind of quotes, you're using “ instead of "
The ones you are using are smart/curly quotes, you need straight quotation marks.

I just tested it with the new ones and it works fine.
Here is the fixed version


HTML:
<p style="position: absolute; right: 400px; top: 10px; height: 20%; max-height: 100px; z-index: auto;">
    <a href="https://t.me/evyworld"><img src="https://i.ibb.co/44MNhzn/IMG-20240409-052356-275.png"></a>
</p>
<p style="position: absolute; right: 300px; top: 10px; height: 20%; max-height: 100px; z-index: auto;">
    <a href="https://www.instagram.com/evyshyone/"><img src="https://i.ibb.co/37fK14Y/IMG-20240409-053438-951.png"></a>
</p>
<p style="position: absolute; right: 200px; top: 10px; height: 20%...
You're using the wrong kind of quotes, you're using “ instead of "
The ones you are using are smart/curly quotes, you need straight quotation marks.

I just tested it with the new ones and it works fine.
Here is the fixed version


HTML:
<p style="position: absolute; right: 400px; top: 10px; height: 20%; max-height: 100px; z-index: auto;">
    <a href="https://t.me/evyworld"><img src="https://i.ibb.co/44MNhzn/IMG-20240409-052356-275.png"></a>
</p>
<p style="position: absolute; right: 300px; top: 10px; height: 20%; max-height: 100px; z-index: auto;">
    <a href="https://www.instagram.com/evyshyone/"><img src="https://i.ibb.co/37fK14Y/IMG-20240409-053438-951.png"></a>
</p>
<p style="position: absolute; right: 200px; top: 10px; height: 20%; max-height: 100px; z-index: auto;">
    <a href="https://fans.ly/r/shyevy"><img src="https://i.ibb.co/xG5xWWy/IMG-20240409-053731-257.png"></a>
</p>
 
Upvote 0
Solution
You're using the wrong kind of quotes, you're using “ instead of "
The ones you are using are smart/curly quotes, you need straight quotation marks.

I just tested it with the new ones and it works fine.
Here is the fixed version


HTML:
<p style="position: absolute; right: 400px; top: 10px; height: 20%; max-height: 100px; z-index: auto;">
    <a href="https://t.me/evyworld"><img src="https://i.ibb.co/44MNhzn/IMG-20240409-052356-275.png"></a>
</p>
<p style="position: absolute; right: 300px; top: 10px; height: 20%; max-height: 100px; z-index: auto;">
    <a href="https://www.instagram.com/evyshyone/"><img src="https://i.ibb.co/37fK14Y/IMG-20240409-053438-951.png"></a>
</p>
<p style="position: absolute; right: 200px; top: 10px; height: 20%; max-height: 100px; z-index: auto;">
    <a href="https://fans.ly/r/shyevy"><img src="https://i.ibb.co/xG5xWWy/IMG-20240409-053731-257.png"></a>
</p>
Look the same for me but tested and it's working, thanks a lot mate!
 
Upvote 0
You're using the wrong kind of quotes, you're using “ instead of "
The ones you are using are smart/curly quotes, you need straight quotation marks.

I just tested it with the new ones and it works fine.
Here is the fixed version


HTML:
<p style="position: absolute; right: 400px; top: 10px; height: 20%; max-height: 100px; z-index: auto;">
    <a href="https://t.me/evyworld"><img src="https://i.ibb.co/44MNhzn/IMG-20240409-052356-275.png"></a>
</p>
<p style="position: absolute; right: 300px; top: 10px; height: 20%; max-height: 100px; z-index: auto;">
    <a href="https://www.instagram.com/evyshyone/"><img src="https://i.ibb.co/37fK14Y/IMG-20240409-053438-951.png"></a>
</p>
<p style="position: absolute; right: 200px; top: 10px; height: 20%; max-height: 100px; z-index: auto;">
    <a href="https://fans.ly/r/shyevy"><img src="https://i.ibb.co/xG5xWWy/IMG-20240409-053731-257.png"></a>
</p>

Bravo - good spot @NotYou
 
Upvote 0
Look the same for me but tested and it's working, thanks a lot mate!

The difference is the browser is looking for code written between the straight double quotation marks (as found on your keyboard). Your code contained a mixture of these and the "curly quotes" (alt 0147 | alt 0148). Code contained between "curly quotes" will get ignored by the interpreter. This is why only some of your code functioned.


1712686890337.png
 
  • Helpful!
Reactions: AmberCutie
Upvote 0
Upvote 0