inherit
220772
0
Mar 24, 2023 21:43:23 GMT -8
Tiffy-Bean
I support plugin and theme makers rights to create themes and plugins that are paid for.
1,052
April 2015
tiffythecodingwhiz
|
Post by Tiffy-Bean on Nov 10, 2015 17:24:34 GMT -8
I'm trying to make a popup that comes up with an image AND text. I don't want it to be opened in another window, it needs to be a popup with an option to close it, but I'm doing something wrong with the code. I know how to do just the image:
<center><a href="http://i.imgur.com/UwypMHo.png" target="_blank" onclick="window.open('http://i.imgur.com/UwypMHo.png', 'popup', 'height=112, width=491'); return false;"><img src="http://i.imgur.com/UwypMHo.png?1"></a></center>
But how do I add writing to that as well? I want the writing to appear in the popup beside the image.
|
|
inherit
220772
0
Mar 24, 2023 21:43:23 GMT -8
Tiffy-Bean
I support plugin and theme makers rights to create themes and plugins that are paid for.
1,052
April 2015
tiffythecodingwhiz
|
Post by Tiffy-Bean on Nov 11, 2015 22:51:32 GMT -8
Figured it out in case anyone else wants to do this:
if I want to do popups
<span id="boxclose" onClick="document.getElementById('box').style.display='none'; document.getElementById('shadowing').style.display='none'">close </span> <div id="boxcontent"> <b>Bryce Gibson</b><br> <i>Coven Leader</i>
Information on Bryce test here blah blah blabh blah </div> </div>
<style type="text/css"> #shadowing{display: none;position: fixed;top: 0%;left: 0%;width: 100%;height: 100%; background-color: #CCA;
z-index:10; opacity:0.5; filter: alpha(opacity=50);} #box {display: none;position: fixed;top: 20%;left: 20%;width: 60%;height: 60%;max-height:400px;padding: 0;
margin:0;border: 1px solid black;background-color: white;z-index:11; overflow: hidden;} #boxclose{float:right;position:absolute; top: 0; right: 0px; background-image:url
(images/close.gif);background-repeat:no-repeat; background-color:#CCC; border:1px solid black;
width:20px;height:20px;margin-right:0px;} #boxcontent{position:absolute;top:23px;left:0;right:0;bottom:0;margin:0 0 0 0;padding: 8px;overflow:
auto;width:100%;height:100%; overflow:hidden;} </style>
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on Nov 12, 2015 1:54:50 GMT -8
You make my job so hard! lol Well done on figuring it out!
|
|
inherit
220772
0
Mar 24, 2023 21:43:23 GMT -8
Tiffy-Bean
I support plugin and theme makers rights to create themes and plugins that are paid for.
1,052
April 2015
tiffythecodingwhiz
|
Post by Tiffy-Bean on Nov 12, 2015 12:57:01 GMT -8
I'm sorry! -.- I don't mean to!
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on Nov 12, 2015 13:34:46 GMT -8
I'm sorry! -.- I don't mean to! O.K. I forgive you.
|
|