HTML Use content/Input from a user in order to overlay his text over a picture - html

I'm quite new to html and in order to help a friend create a Website, I need to get an Input from a User and overlay it over a picture. I'm using a WCMS and I doubt there aren't any options to solve this problem without using HTML.
Thank you!
I already tried to create some text boxes and already implemented the image, but I don't know how to get the Input and write it on the picture

Related

Divs and textboxes in html

I am currently working on creating user interfaces. I came across this picture and was inspired. I know this may not be the place to ask but i need to to know. I know how to to the textboxes and dropdown menu. I am interested on how i can add the 'Manage users' and 'Show Provenance' shown in black in the left at those positions exactly as well as creating the gap between the 'contract information', 'Credentials' and 'Manage Users' and aligning the words in that manner. Please send a code snippet. Thank you in advance.
Check out Bootstrap4 and the input group options:
https://getbootstrap.com/docs/4.1/components/input-group/
You can probably use emoticons aswell for additional graphics options.

Why is my website going blank everytime I edit a row in Wp_options?

I have a wordpress theme and I am trying to change a bit of text that I can only really find in the database. It's a bit of title text that I can only find in the wp_options database.
I found the bit of text I need to change in wp_options, in a row under "of_options"
...";s:16:"translation_port";s:16:"Recent portfolio";s:23:"translation_relatedpost";
s:7:"Related"; s:27:"translation_advertise_title";s:28:"Our Nights";
s:20:"translation_morelink";s:9:"Read more";s:24:"port_project_description";s:20:
That above code does not have any breaks in it, I only changed it for ease of reading.
Just ran another test, and I dont actually have to change a single bit of text, purely opening the row for edit, then saving it without touching anything messes it up.
No logos, images, layout or anything shows. Only the background image :/
I have no idea, tried everything.
Any help would be appreciated.
Don't try to edit this field in the database.
What you see here is a serialized array.
'of_options' refers to 'Options Framework' and is an array containing all chosen options.
Look under Appearance for an options links. The values will be editable there. If somewhere else you need to add more info to your question for help to be provided.
Never fully read it.
Was a part in the theme edit menu to change the titles under a translation tab. My bad.

Form Table Style

Good Morning everyone.
I'm working on a html page where i need a form similar with the one from the image. It will start from one section of fields and using jquery i will add more and more as needed.
My problem is that i'm not sure how should i design it, i'm thinking using a div that will hold three input fields and from there when i press tab key another div should be added using JavaScript.
I need an advice or example how should i do it.

Is it possible to make a HTML chart modifiable?

im totally new when it comes to trying to make HTML code. I was wondering if its possible to make certain rows/columns in a HTML chart modifiable by random users that view the page.
And if so is it possible to make it so that once modified they click a button and it changes some other rows like a calculator does, based on what i have preset (numbers)
hopefully that makes sense...
thks
btw im using a Google site i made
You can use <input> elements for allowing people to input text, and javascript for any computation involving their contents, or for changing what's on the page.
See https://developer.mozilla.org/en/HTML/Element/Input and https://developer.mozilla.org/en/JavaScript for more info on each of these.
HTML tables are columns and rows of static data, not modifiable. One solution would be using javascript and do an .onClick method on each <td>. That method would convert text in to something like <input type="text" name="cell_x_y" value="original_value" /> and then another method which would handle ENTER key or leaving that text field and would submit value to server.

Write text in image inside picturebox

I'm a noob in MSAccess, but I only need to make aspecific task.
I've a picture (a map) and a PictureBox. I load the map into the picturebox and now I need to write some text in some coordinates inside the map. I can't do it positioning a label because later the image has to be available to be saved with this text.
Could you give me please some Ideas about how can I do it?
Thanks.
You can only accomplish this by really modifying the image itself.
Positioning a label on top of the map works for you if you print the form or report after you do that. This way you can save it as PDF for example and still have your test on top of the map.