View Single Post
  #13  
Old March 13, 2010, 08:56 AM
Rusty's Avatar
Rusty Rusty is online now
Señor Speedy
 
Join Date: Aug 2007
Location: USA
Posts: 11,328
Native Language: American English
Rusty has a spectacular aura aboutRusty has a spectacular aura about
I see that you're missing two icons. There's a 'check spelling' icon just before the increase/decrease size arrows, and that icon set is followed by the 'editor mode' icon.

If you look at Tomísimo using IE or Firefox, do you see the icon I'm referring to? In Firefox I don't see the 'check spelling' icon, but the 'editor mode' icon is present.

Below is the HTML source for the line I'm talking about (as shown by IE and by Firefox). The only difference between the two is that Firefox doesn't show the check spelling icon. I don't know why it's missing, but there are differences between browsers.
I haven't used Google Chrome, so I don't know if it'll show you the HTML.

~~~
Here is the Accents code:

<td>
<div class="imagebutton" id="vB_Editor_001_popup_specialchars" title="Accents">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="popup_feedback">
<div id="vB_Editor_001_specialchar_out" style="width:40px">Accents</div>
</td>
<td class="popup_pickbutton"><img src="images/editor/menupop.gif" width="11" height="16" alt="" /></td>
</tr>
</table>
</div>
</td>
<!-- end added ::::::::::::::::::::::::::::::::::::: -->
Here is the check spelling code:
<td width="100%">&nbsp;</td>
<td>
<div class="imagebutton" id="vB_Editor_001_cmd_spelling">
<img src="images/editor/spelling.gif" width="21" height="20" alt="Check Spelling" />
</div>
</td>
Here is the increase/decrease size code:
<td>
<div class="imagebutton" id="vB_Editor_001_cmd_resize_0_100">
<img src="images/editor/resize_0.gif" width="21" height="9" alt="Decrease Size" />
</div>
<div class="imagebutton" id="vB_Editor_001_cmd_resize_1_100">
<img src="images/editor/resize_1.gif" width="21" height="9" alt="Increase Size" />
</div>
</td>
Here is the editor mode code:
<td>
<div class="imagebutton" id="vB_Editor_001_cmd_switchmode">
<img src="images/editor/switchmode.gif" width="21" height="20" alt="Switch Editor Mode" />
</div>
</td>
~~~

Firefox

~~~
Here is the Accents code:
<td>
<div class="imagebutton" id="vB_Editor_001_popup_specialchars" title="Accents">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="popup_feedback">
<div id="vB_Editor_001_specialchar_out" style="width:40px">Accents</div>
</td>
<td class="popup_pickbutton"><img src="images/editor/menupop.gif" width="11" height="16" alt="" /></td>
</tr>
</table>
</div>
</td>
<!-- end added ::::::::::::::::::::::::::::::::::::: -->
Firefox doesn't show the check spelling icon. Just this:<td width="100%">&nbsp;</td>
Then, it continues with the increase/decrease size code:
<td>
<div class="imagebutton" id="vB_Editor_001_cmd_resize_0_100">
<img src="images/editor/resize_0.gif" width="21" height="9" alt="Decrease Size" />
</div>
<div class="imagebutton" id="vB_Editor_001_cmd_resize_1_100">
<img src="images/editor/resize_1.gif" width="21" height="9" alt="Increase Size" />
</div>
</td>
And here is the editor mode code:
<td>
<div class="imagebutton" id="vB_Editor_001_cmd_switchmode">
<img src="images/editor/switchmode.gif" width="21" height="20" alt="Switch Editor Mode" />
</div>
</td>


EDIT: I see that this is information is no longer required. David said Chrome doesn't support it.

Last edited by Rusty; March 13, 2010 at 08:59 AM.
Reply With Quote