Ask Question Forum:
Model Library:2025-02-08 Updated:A.I. model is online for auto reply question page
C
O
M
P
U
T
E
R
2
8
Show
#
ASK
RECENT
←
- Underline
- Bold
- Italic
- Indent
- Step
- Bullet
- Quote
- Cut
- Copy
- Paste
- Table
- Spelling
- Find & Replace
- Undo
- Redo
- Link
- Attach
- Clear
- Code
Below area will not be traslated by Google,you can input code or other languages
Hint:If find spelling error, You need to correct it,1 by 1 or ignore it (code area won't be checked).
X-position of the mouse cursor
Y-position of the mouse cursor
Y-position of the mouse cursor
Testcursor
caretPos
Attachment:===
Asked by frugalmule
at 2024-07-25 23:32:48
Point:500 Replies:11 POST_ID:829115USER_ID:11585
Topic:
WordPress;Hypertext Markup Language (HTML);Cascading Style Sheets (CSS)
Here is the actual page. Here is a video showing a visual of the trouble I am having http://screencast.com/t/zjXoRWfkmR31 and the iframe syntax is below. Assistance is greatly appreciated.
<iframe src="https://docs.google.com/forms/d/138XZwm17GPB8Gy0zbsUNV-eQFPa7_o_7pbHzrE7Ho0k/viewform?embedded=true" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" height="100%" width="100%">Loading...</iframe> 1:
Author: frugalmule replied at 2024-07-26 11:42:26
I tried example two and it worked. It turns out it was the percentage it didn't like and I did not catch the 1000px thing which worked very well.
Expert: Gary replied at 2024-07-26 07:44:23
Add this CSS
Accepted Solution
Expert: duncanb7 replied at 2024-07-26 01:12:11
500 points EXCELLENT
Since it is controlled by wordpress,
You can try this to set any width and heigh you want in the following examples
Duncan
Example-1
You can try this to set any width and heigh you want in the following examples
Duncan
Example-1
<div style="width:1000px; height:1000px"><iframe src="https://docs.google.com/forms/d/138XZwm17GPB8Gy0zbsUNV-eQFPa7_o_7pbHzrE7Ho0k/viewform?embedded=true" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" height="100%" width="100%">Loading...</iframe></div> 1:2:3:
Or you can do
Example-2
<iframe src="https://docs.google.com/forms/d/138XZwm17GPB8Gy0zbsUNV-eQFPa7_o_7pbHzrE7Ho0k/viewform?embedded=true" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" height="1000px" width="1000px">Loading...</iframe> 1:
Author: frugalmule replied at 2024-07-26 01:08:04
Thank you for looking.
Here is a screenshot of it also in notepad ++ http://screencast.com/t/oIBwMq0w1utz
Here is a screenshot of it also in notepad ++ http://screencast.com/t/oIBwMq0w1utz
Expert: duncanb7 replied at 2024-07-26 00:52:07
Could you send the index.php to us at
http://frugalmule.com/payreq/index.php ?
Your issue the iframe is that site could not get entire page Right ?
Duncan
http://frugalmule.com/payreq/index.php ?
Your issue the iframe is that site could not get entire page Right ?
Duncan
Author: frugalmule replied at 2024-07-26 00:47:28
Now I am not sure what you mean?
It is a wordpress page.
Here is a detailed video showing what is happening http://screencast.com/t/XHXu0VCdfZK2.
Here is the page www.frugalmule.com/payreq.
It is a wordpress page.
Here is a detailed video showing what is happening http://screencast.com/t/XHXu0VCdfZK2.
Here is the page www.frugalmule.com/payreq.
Expert: duncanb7 replied at 2024-07-26 00:43:39
you question is "Ask iframe to use entire area"
Could you send us your actul page at http://frugalmule.com/payreq/ ?
Otherwise, it is hard to understand what you want
Duncan
Could you send us your actul page at http://frugalmule.com/payreq/ ?
Otherwise, it is hard to understand what you want
Duncan
Author: frugalmule replied at 2024-07-26 00:34:52
Here is my attempt in detail http://screencast.com/t/XHXu0VCdfZK2
Expert: duncanb7 replied at 2024-07-26 00:18:53
body style gets stripped from the syntax by default?
What is that mean ? Pleae write it in detail
set the width and height for your wrapper tag to iframe if
you want to use width="100%"
I tested it works at my side
Duncan
Author: frugalmule replied at 2024-07-26 00:15:29
Very interesting. body style gets stripped from the syntax by default?
Expert: duncanb7 replied at 2024-07-26 00:07:34
You need to set iframe parent node to fix width and height,
width=100% is inherited from his parent node, try this for exmaple
such as body or div tag
width=100% is inherited from his parent node, try this for exmaple
such as body or div tag
<body style="width:1000px; height:1000px"><iframe src="https://docs.google.com/forms/d/138XZwm17GPB8Gy0zbsUNV-eQFPa7_o_7pbHzrE7Ho0k/viewform?embedded=true" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" height="100%" width="100%">Loading...</iframe></body> 1:2:3:
Duncan