Hi Olivia, I looked at your profile and thought I would clean up the code for you. Instead of having all of your CSS inline with the HTML (which can make things look quite messy), I broke out the HTML and CSS code separately. There were also many issues with the existing HTML code that I fixed. I think you will see that the cleaned up HTML is much more manageable now for you to make future changes, if you wish. I tried to keep the end result of my work to appear the same as how the profile looks now.
I also wanted to give you an example of how you can incorporate an image in your 'About Me' section since you asked how to do it. So, within both the HTML and CSS, I gave an example using one of your own pics from your profile. I also gave the image some arbitrary formatting with the CSS just so you can see that you can manipulate the image to however you like to present it. You can obviously delete this example image later by deleting the HTML line for this image.
You need to do 2 things:
1) Replace
all of your existing HTML code in your 'About Me' section with the HTML code I am giving to you here.
2) To use the CSS code that I am giving to you, go to your 'Manage Profile' page. On the left, click 'Customize Profile'. Click "edit your css directly". You will see a text box appear with a fair amount of CSS code already inside of it. At the moment, do not alter any of the existing CSS code. Simply go to the very end of the existing CSS code and add the CSS code I am giving to you here. At the bottom of the page, click "Update CSS".
HTML:
Code:
<p>
<p><b>Hey fellas! Welcome to my room. I appreciate so much that you decided to drop by. Don't be shy and please say hi ;)</b></p>
<p><b>Few Rules:</b> No paypal. No meet-ups. Be polite. Save the dirty talk and intimate questions for Private messages.</p>
<p><span id="MyTipHeadline">Tip menu for tonight</span></p>
<ul id="MyTipList">
<li>Like me - <span class="price">10</span>
<li>Cute - <span class="price">20</span>
<li>Booty/Boobie flash / Spank / Spread - <span class="price">50</span>
<li>Friend Add / Pm - <span class="price">69</span>
<li>Titty massage / nipple play - <span class="price">75</span>
<li>Panda Onesie - <span class="price">80</span>
<li>Naughty Outfit - <span class="price">90</span>
<li>Strip Tease - <span class="price">99</span>
<li>Pussy Flash - <span class="price">100</span>
<li>BJ / Anal tease 5 minutes - <span class="price">199</span>
<li>Snapchat - <span class="price">299</span>
<li>Instanaked - <span class="price">1234</span>
<li>Insta-cum - <span class="price">2222</span>
</ul>
<p><b>I am all about trying to new things and I am extremely open and not judgmental, so please, ask me anything!</b></p>
<p>I am looking for people who are looking for friendship and to have some fun in between.</p>
<p><i><b>Seeking submissive slave for long term relationship and Sugar daddy who knows how to support me while respecting boundaries.</b></i></p>
<img class="example_image" src="https://img.mfcimg.com/photos2/247/24783135/852-773-188-685-10713434.jpg" alt="You can write what you what here">
<br><br>
</p>
CSS:
Code:
#MyTipHeadline {
font-size: 1.5em;
color: #008000;
font-weight: bold;
}
#MyTipList {
list-style-type: none;
padding-left: 36px;
font-weight: bold;
font-size: 14px;
}
#MyTipList li {
color: #cc3399;
padding-bottom: 14px;
}
#MyTipList .price {
color: #4b0082;
}
.example_image {
position: relative;
width: 100px;
left: 50px;
border-style: solid;
border-width: 4px;
border-radius: 10px;
border-color: lightpink;
}
I hope this helps!