#navbar-iframe {height:0px;visibility:hidden;display:none}

MFBQ

Most Frequent Blogger Questions



I don't know more than I know--sometimes I know even less!
Click to see the incredible list,

All The Things I Don't Know!


If some portion of this blog is unreadable in Firefox, Internet Explorer, or whatever, tell it to go to hell then try another browser!!!

BLOGGER SUPPORT
http://help.blogger.com/?page=contact


BLOGGER PROBLEM REPORT FORM http://help.blogger.com/?page=troubleshooter.cs&problem=&contact_type=bug_with_blogger_beta&Submit=Submit

BLOGGER HELP FORM
http://help.blogger.com/?page=troubleshooter.cs&problem=&contact_type=other&Submit=Submit


Tell BLOGGER WISHLIST about a feature you'd like to see in Blogger!

Email Me if you have questions! And make sure the subject line or first two words in the message identify you as an MFBQ reader, so your email won't be mistaken as Squid, Squod, or Spam!

Email your questions to me here!

EMERGENCY STEPS

Kick-starting The Blog
1. Refresh (F5) or Ctrl-F5
2. Clear cache (delete temporary Internet files) and cookies in Tools-Internet Options.
3. Add a question mark to the end of your blog's internet address in the address box and see if it will show the latest update. (Can also be done with other people's url's in the address window.)
4. Republish (if in classic Blogger)
5. Reboot
6. Log out and log back in again (may change to an untroubled server)
7. Change browser (IE, Firefox, others)

---Not necessary to do all of these at once!---

Blogger may make problems for some computers about accepting cookies, especially when you are using the new versions of Internet Explorer or Firefox browsers. Difficulties with accepting scripts may be caused by security systems, antivirus programs, firewalls, and some add-ons. Check all your settings.

You may need to change your browser settings, or to list www.blogger.com and blogger.com as "trusted sites" in your Internet Options-Security so that scripting can occur.

USEFUL BLOGGER HELP FILE

http://help.blogger.com/bin/answer.py?answer=41971&topic=8914

[For Newbies or anyone else who gets lost in the rain in Juarez.]

Wednesday, May 27, 2009

Table for Captioned Photos

RonaldSouthern

Haven't done any of those in a while. Tedious.

[Those of you wishing to cut to the chase quickly, start reading the large yellow-highlight area below, which is below the fourth straight red line.]
Below is the code that makes a small table like the one above have photos side by side:

<center><table border=4 width=95%><tr><th align=center>Ronald</th> <th align=center>Southern</th></tr><tr><td><img src=\"https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgvYWmbzDx0ZTNhzkxcnvD1E8roURVwVz91WLs1tbj9CR7Hm7k_MxFNEzWtzGtqjXTACBfVpxPN89G28V9DhtDv50-fAKL24BcsM5UOZxSYweUFjdFcrVBf9EZrXSqsPwipoki46n9NWSo/s1600/twinkiebite.gif\" /> </td> <td><img src=\"https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgvYWmbzDx0ZTNhzkxcnvD1E8roURVwVz91WLs1tbj9CR7Hm7k_MxFNEzWtzGtqjXTACBfVpxPN89G28V9DhtDv50-fAKL24BcsM5UOZxSYweUFjdFcrVBf9EZrXSqsPwipoki46n9NWSo/s1600/twinkiebite.gif\" /> </td></tr></table> </center>


[More below...]


A MORE SIMPLISTIC SAMPLE OF A TABLE (followed by its code) is shown below:

PICTUREOR TEXT


<table border=2>
<tr>
<td>PICTURE</td>
<td>OR TEXT</td>
</tr>
</table>


PREVENT LINE BREAKS:

In order for the Table not to cause extra line breaks in Blogger posts, there are two methods:

Method #1: You may need to copy it out like this (no line breaks of your own):

<table border=2><tr><td>PICTURE</td><td>OR TEXT</td></tr></table>

--To create additional row(s), add another set of "table records" such as

<tr><td>picture or text</td></tr>

as needed. Place them after the first table record and before the end tag, </table>.

--Remember that the photos cannot exceed the width of the area where you are placing them or else it will create problems, probably your sidebar being pushed down.



Method #2: This is something I've tried a number of times now. It does seem to be very effective, especially if you're going to use tables often. It is not good, though, for creating a table around a list (numbered or otherwise) because it will remove the page breaks and show the list as if it's a regular paragraph. It'll make the info resemble a traffic jam. This method makes the change in this way, using css:

Table Formatting In CSS


My explanation of the Table Formatting (Method #2) which I learned from the site above is as follows--changing the table in the CSS:

Place the following line of code in your CSS:

.nobr br { display: none }

Then place the DIV tags around your table as below:

<div class=nobr>
<table border=2>
<tr>
<td>PICTURE</td>
<td>OR TEXT</td>
</tr>
</table>
</div>

No comments:

Post a Comment