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

Trouble make a profile using microsoft publisher

  • ** 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.
Status
Not open for further replies.

RosieBlue

I haven't posted recently, hopefully will be back soon!
Inactive Cam Model
Aug 12, 2013
4
4
16
Hi
I have made an "about me" part for my profile using microsoft publisher so I can get the HTML code in order to make it work but I have run into a problem.
When I copy paste the source code into the About me section and click update profile it says

"ERROR: There is a problem in the "More About Me/Bio" field: You have used a tag that is not allowed.

Does anybody know what this means if so what are the tags which I can't use.

Thanks Rosie xx
 
RosieBlue said:
Hi
I have made an "about me" part for my profile using microsoft publisher so I can get the HTML code in order to make it work but I have run into a problem.
When I copy paste the source code into the About me section and click update profile it says

"ERROR: There is a problem in the "More About Me/Bio" field: You have used a tag that is not allowed.

Does anybody know what this means if so what are the tags which I can't use.

Thanks Rosie xx
There is no way to help you without seeing the code you're trying to paste.
 
the code is to big to be posted on here and i've tried to attach it as a notepad file but the forum wont let me do that either.
I'll see if i can post some of it soon
 
RosieBlue said:
the code is to big to be posted on here and i've tried to attach it as a notepad file but the forum wont let me do that either.
I'll see if i can post some of it soon
If you are using all the output from a publisher file it is likely you are trying to insert an entire HTML document into one of the subsections. By that I mean you are probably inserting something that starts with "<html>" or "!DOCTYPE" or something similar (or worse, something that isn't even HTML). You definitely cannot do that. You can only add snippets of HTML using very basic tags like DIV IMG A P SPAN, etc (<div> <img> <a> ...).
 
Kradek said:
RosieBlue said:
the code is to big to be posted on here and i've tried to attach it as a notepad file but the forum wont let me do that either.
I'll see if i can post some of it soon
If you are using all the output from a publisher file it is likely you are trying to insert an entire HTML document into one of the subsections. By that I mean you are probably inserting something that starts with "<html>" or "!DOCTYPE" or something similar (or worse, something that isn't even HTML). You definitely cannot do that. You can only add snippets of HTML using very basic tags like DIV IMG A P SPAN, etc (<div> <img> <a> ...).

Yes it does start with <html>
I'm sorry but i'm new to all this web code stuff and do feel like a complete fall trying to do it.
Is there anyway for knowing what i need to cut out of what i've got or should i start again using a different program. one that will give me the codes i need?

Thanks for your help so far Rosie
 
RosieBlue said:
Kradek said:
RosieBlue said:
the code is to big to be posted on here and i've tried to attach it as a notepad file but the forum wont let me do that either.
I'll see if i can post some of it soon
If you are using all the output from a publisher file it is likely you are trying to insert an entire HTML document into one of the subsections. By that I mean you are probably inserting something that starts with "<html>" or "!DOCTYPE" or something similar (or worse, something that isn't even HTML). You definitely cannot do that. You can only add snippets of HTML using very basic tags like DIV IMG A P SPAN, etc (<div> <img> <a> ...).

Yes it does start with <html>
I'm sorry but i'm new to all this web code stuff and do feel like a complete fall trying to do it.
Is there anyway for knowing what i need to cut out of what i've got or should i start again using a different program. one that will give me the codes i need?

Thanks for your help so far Rosie

the minimum you need for an HTML page is (in this order)...

<html><head><title></title></head><body>(most of your content here)</body></html>

if you copy and paste this HTML you can make an HTML page with no images

if you want an image, you simply add this...

<img src=(URL)>

and replace (URL) with a link to an image (do no put anything after </body> or </html> in your HTML)
 
God said:
RosieBlue said:
Kradek said:
RosieBlue said:
the code is to big to be posted on here and i've tried to attach it as a notepad file but the forum wont let me do that either.
I'll see if i can post some of it soon
If you are using all the output from a publisher file it is likely you are trying to insert an entire HTML document into one of the subsections. By that I mean you are probably inserting something that starts with "<html>" or "!DOCTYPE" or something similar (or worse, something that isn't even HTML). You definitely cannot do that. You can only add snippets of HTML using very basic tags like DIV IMG A P SPAN, etc (<div> <img> <a> ...).

Yes it does start with <html>
I'm sorry but i'm new to all this web code stuff and do feel like a complete fall trying to do it.
Is there anyway for knowing what i need to cut out of what i've got or should i start again using a different program. one that will give me the codes i need?

Thanks for your help so far Rosie

the minimum you need for an HTML page is (in this order)...

<html><head><title></title></head><body>(most of your content here)</body></html>

if you copy and paste this HTML you can make an HTML page with no images

if you want an image, you simply add this...

<img src=(URL)>

and replace (URL) with a link to an image (do no put anything after </body> or </html> in your HTML)

BUT, for the MFC profile, she needs to delete the <body> tag and everything before it, plus the </body> tag and everything after it.

So, the code you have should look like:
<html>
<head>
<title>
(stuff here)
</title>
</head>
<body>

(most of your content here)
</body>
</html>


delete everything I put in red, and then try again.
 
LadyLuna said:
God said:
RosieBlue said:
Kradek said:
RosieBlue said:
the code is to big to be posted on here and i've tried to attach it as a notepad file but the forum wont let me do that either.
I'll see if i can post some of it soon
If you are using all the output from a publisher file it is likely you are trying to insert an entire HTML document into one of the subsections. By that I mean you are probably inserting something that starts with "<html>" or "!DOCTYPE" or something similar (or worse, something that isn't even HTML). You definitely cannot do that. You can only add snippets of HTML using very basic tags like DIV IMG A P SPAN, etc (<div> <img> <a> ...).

Yes it does start with <html>
I'm sorry but i'm new to all this web code stuff and do feel like a complete fall trying to do it.
Is there anyway for knowing what i need to cut out of what i've got or should i start again using a different program. one that will give me the codes i need?

Thanks for your help so far Rosie

the minimum you need for an HTML page is (in this order)...

<html><head><title></title></head><body>(most of your content here)</body></html>

if you copy and paste this HTML you can make an HTML page with no images

if you want an image, you simply add this...

<img src=(URL)>

and replace (URL) with a link to an image (do no put anything after </body> or </html> in your HTML)

BUT, for the MFC profile, she needs to delete the <body> tag and everything before it, plus the </body> tag and everything after it.

So, the code you have should look like:
<html>
<head>
<title>
(stuff here)
</title>
</head>
<body>

(most of your content here)
</body>
</html>


delete everything I put in red, and then try again.

Thanks for all your help.
with all the info i got a managed to get my head round it and got it on my profile, its not how i made it on publisher but its ok for me plus i now have learnt what bits of code do what. :geek:

Rosie
 
  • Like
Reactions: LadyLuna
RosieBlue said:
Thanks for all your help.
with all the info i got a managed to get my head round it and got it on my profile, its not how i made it on publisher but its ok for me plus i now have learnt what bits of code do what. :geek:

Rosie

You're welcome :) I made this post which explains how to put links on your profile, how to make line breaks and paragraphs, some basic formatting tools, and such.
 
Status
Not open for further replies.