make a link box for my banner
-
please help me find a way to make a copy and paste box so i can share my banner with others
-
Textarea elements are not allowed in post/pages. What you could do is create a pseudo box using some inline CSS. Something like this:
<div style="border: solid 1px #ccc; width: 450px; height: 200px; margin: 10px auto; padding: 2px"> [Your banner image code here] </div>Try that, play with the values till it fits your needs.
-
-
-
-
-
-
Sort of long, but I think in the end it was the source code option that worked.
-
-
-
Well, paste it in the VISUAL editor (so it doesn’t work as code), then switch to HTML and enclose it in devblog’s div code.
But devlog’s code produces a fixed-size box. I would suggest something like this instead:
<div style="border:1px solid black;text-align:left;padding:1em;">IMAGE_CODE_HERE</div> -
Well, it’s fixed because the idea was to replicate a textarea element.
Also snakeshock, you might want to make that banner “clickable” so that people can visit your blog.
let me make a test first before posting the actual code
<div> < or &lt; </div> -
-
okay, now that I know how to display HTML entity names here, you could try this code if you want:
<div style="font-family: Courier New; border: solid 1px #999; width: 450px; height: 100px; margin: 10px auto; padding: 2px; white-space: pre; overflow: auto;"> <a href="http://hahathatsfuney.wordpress.com/" title="Visit Ha Ha Ha, That's Funey"> <img src="http://hahathatsfuney.wordpress.com/files/2008/11/d2.png" alt="d2" width="135" height="150" style="border: none;" /> </a> </div>To implement it, follow panaghiotisadam’s instructions.
- The topic ‘make a link box for my banner’ is closed to new replies.