Is there any code for the banner to be stretched, meaning like how Proboards has : Preview. I have checked in the database but could not find it.
Thanks,
Darkmage
How many parts is your image in?![]()
3 well once I fix a little something, it will be 3, 2 sides and middle.
Every time I put the banner in .png or .gif it only gives me non RBG colors.
EDIT:
Right
Middle
Left
For this to work, you'll need to split it into 5.
The left image, then the black to the side of "Mage Designs", then "Mage Designs", then the black to the right of that, then the right image.
The reason being that it will be coded to repeat the black to the sides of the text; otherwise it will just have "Mage Designs" repeated a bunch of times.![]()
Ahh ok, lemme go fix that. Do you see the light white dots of the left and right images? its hard to see, but it will show up looking like this Wallpaper
EDIT:
Right
Middle Right to Mage Designs
Middle
Middle Left to Mage Designs
Left
Its all in order from top to bottom.
I'll get this done in a bit.![]()
I just woke up, so I need to get some breakfast first. *Looks at clock - 10:18 pm*![]()
Ok thanks Marc.you live on the EST, and you are now eating breakfast? lol, and only 10:22 pm lol.
*9:22 pm for meh*
bump
Oops, completely forgot about this. I'll get to this and the other outstanding requests I've been avoiding once my hands have warmed up a bit.[Just got in; currently -24C here at the moment. o.O]
ok thanks, plus can you tell me that in F? I don't really know the C and how to differ them![]()
About -12F, I believe.
thats nothing lol, try -25F and very harsh wind
I had to miss work because of it
![]()
thats nothing lol, try -25F and very harsh wind
I had to miss work because of it
![]()
In a thin hoodie (sweater), with nothing but a t-shirt underneath, for over an hour?![]()
Try this...
Code:
- <script>
- var l = 'http://i185.photobucket.com/albums/x20/magedesigns/designbanner1-3.jpg';
- var m = 'http://i185.photobucket.com/albums/x20/magedesigns/designbanner1-1.jpg';
- var r = 'http://i185.photobucket.com/albums/x20/magedesigns/designbanner1-2.jpg';
- var r_cell = get('welcome_table','id').rows[0].cells[0];
- var l_cell = get('welcome_table','id').rows[0].insertCell(0);
- var m_cell = get('welcome_table','id').rows[0].insertCell(1);
- var r_img = document.createElement('img');
- var m_img = document.createElement('img');
- var l_img = document.createElement('img');
- r_img.src = r;
- m_img.src = m;
- l_img.src = l;
- r_cell.innerHTML = '';
- r_cell.appendChild(r_img);
- l_cell.appendChild(l_img);
- m_cell.appendChild(m_img);
- get('menu_buttons','id').colSpan = '3';
- get('br','tag')[0].style.display='none';
- get('welcome_table','id').width = '100%';
- </script>