Why would the background image fail to load?
1. The server fails to find the image.
2. The server fails to find the image location, or the location
changes.
3. The server fails to recognize the image name, or the image name
changes.
4. The user's gateway/firewall/device/browser fails to load the
image, for whatever reason.
5. The user's browser/settings break your design in an unexpected
way. The image loads, but not aligned under your table so to make it
readable.
6. Shit happens.
There’s no rule that says you have to care if something happens beyond your
control. Some designers plan for how different browsers display their page…
planning for image failure or style failure is just more of the same.
Is there anyway I can make the whole row act that way?
You probably used an action, so I don’t know what the limitations of that
action is. Whether you can use it on the whole row depends on the
limitations of the action. What I can see in the source code are three
specific attributes added to the link or anchor tag for those first-column
items. They are onmouseover, onmouseout, and class. I don’t see why you
couldn’t replicate those attributes and their values on text links in those
rows - which is not the same thing I think as you’re asking. And it is
advanced, complicated work. What you really want is to wrap the tr element
in link tags then extend those link attributes. More complicated still.
Maybe someone else has a suggestion, as I can only think of very hard ways
to do that.
Can I limit it to this page only?
If you extend the table itself with an id (id=“mytable”) then rewrite your
new style to be
table#mytable tr:hover
then CSS will apply it only to that table. Alternately, you can remove the
style from the Style Editor then place it in the head of just that page by
pasting just before the
<style type="text/css">
table#mytable tr:hover { background-color: #000000; }
</style>
Best wishes,
–
Ernie Simpson
On Tue, Jan 8, 2013 at 6:42 PM, Zignar email@hidden wrote:
Oops, just discovered something else…
That tag-style tr:hover took over all my other pages as well.
Can I limit it to this page only?
Sverker
freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options
freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options