473,769 Members | 1,748 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Opera and No Repeat

Hello-
I've created a page and have a table with a no repeating background.
Works in all but Opera.

Any ideas?

Here's the style sheet:
..tdnavbg {
background-color: #000000;
background-image: url(images/nav_bg.gif);
background-repeat: no-repeat;
}
..tdbgtopmain {
background-image: url(images/creating_header .gif);
background-repeat: no-repeat;
}
..copyright {
font-family: Arial, Helvetica, sans-serif;
font-size: 10px;
font-weight: normal;
color: #FFFFFF;
text-align: center;
}
p {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-style: normal;
color: #FFFFFF;
text-align: justify;
white-space: normal;
}
..pcenter {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-style: normal;
color: #FFFFFF;
white-space: normal;
background-position: center;
}

Thank you.
Jul 20 '05 #1
7 2214
On 28 Jan 2004 14:40:06 -0800, barry womb <ba*******@yaho o.com> wrote:
Hello-
I've created a page and have a table with a no repeating background.
Works in all but Opera.


Which Opera, which page?

[..]

--
Rijk van Geijtenbeek

The Web is a procrastination apparatus:
It can absorb as much time as is required to ensure that you
won't get any real work done. - J.Nielsen
Jul 20 '05 #2
Opera versions 5-7
the page is here http://www.visionbydesign.net

"Rijk van Geijtenbeek" <ri**@opera.com > wrote in message news:<op******* *******@news.in dividual.net>.. .
On 28 Jan 2004 14:40:06 -0800, barry womb <ba*******@yaho o.com> wrote:
Hello-
I've created a page and have a table with a no repeating background.
Works in all but Opera.


Which Opera, which page?

[..]

Jul 20 '05 #3
Figured it out!
I dropped the tag into the TR instead of the TD.
DUH!
Thanks.

"Rijk van Geijtenbeek" <ri**@opera.com > wrote in message news:<op******* *******@news.in dividual.net>.. .
On 28 Jan 2004 14:40:06 -0800, barry womb <ba*******@yaho o.com> wrote:
Hello-
I've created a page and have a table with a no repeating background.
Works in all but Opera.


Which Opera, which page?

[..]

Jul 20 '05 #4

[Please don't post upside down.]

barry womb wrote:
"Rijk van Geijtenbeek" <ri**@opera.com > wrote in message
news:<op******* *******@news.in dividual.net>.. .
On 28 Jan 2004 14:40:06 -0800, barry womb <ba*******@yaho o.com> wrote:
> Hello-
> I've created a page and have a table with a no repeating background.
> Works in all but Opera.


Which Opera, which page?


Opera versions 5-7
the page is here http://www.visionbydesign.net


Looks fine here (Opera 7.23/Linux).

In the debugging process, validation comes before asking others for help.

<URL:http://diveintomark.or g/archives/2003/05/05/why_we_wont_hel p_you>
--
Jim Dabell

Jul 20 '05 #5
On Thu, 29 Jan 2004 15:58:48 +0000, Jim Dabell <ji********@jim dabell.com>
wrote:

<URL:http://diveintomark.or g/archives/2003/05/05/why_we_wont_hel p_you>


Maybe we need to post a message with a big FAQ in it every once in a
while, basically telling folks stuff like:

Q.
How should I ask a question here in c.i.w.a.s.?

A.
1) Validate your HTML (http://validator.w3.org/) and your CSS
(/jigsaw.w3.org/css-validator/) to help eliminate structural errors.
2) Triple-check your code and CSS for obvious errors.
3) Search this newsgroup
(http://groups.google.com/groups?&gro...ng.stylesheets)
for recent discussion of the issue.
4) If you still cannot find the solution, post:
a. the URL of a page showing the problem (either the actual page or a
dummy setup if the actual page isn't for public view)
b. describe the problem as you see it
c. describe what you're intending to happen that isn't happening
d. tell us in what specific browsers you are seeing the problem
5) Be patient and wait, this may be that hour we are not at the computer.
6) If, rather than a pat solution to your problem, you get an explanation
of why there's deeper problems that make this issue trivial, don't get mad
at us.
7) If we start arguing about the proper solution, pour your favorite
beverage, sit back and enjoy the show.
Feel free to edit if I've forgotten something in my
less-than-adequately-caffienated state...
Jul 20 '05 #6
ba*******@yahoo .com (barry womb) wrote:
On 28 Jan 2004 14:40:06 -0800, barry womb <ba*******@yaho o.com> wrote:
> I've created a page and have a table with a no repeating background.
> Works in all but Opera.

Opera versions 5-7
the page is here http://www.visionbydesign.net


Presumably you mean the background image right at the bottom of the
page? nav_bg.gif? Move the class from the <tr> to the <td> and don't
set the background in the HTML as well as the CSS.

However, that background image is just a white box with a black
interior that fills the entire width of the table cell. Why don't you
use CSS border intead? Less bandwidth and more flexible.

The you can concentrate on fixing the more important errors on the
page (such as no alt attributes, pixel font sizes, etc.)

Steve

--
"My theories appal you, my heresies outrage you,
I never answer letters and you don't like my tie." - The Doctor

Steve Pugh <st***@pugh.net > <http://steve.pugh.net/>
Jul 20 '05 #7
On Thu, 29 Jan 2004 11:23:16 -0500, Neal <ne*****@spamrc n.com> wrote:
Maybe we need to post a message with a big FAQ in it every once in a
while, basically telling folks stuff like:

Q.
How should I ask a question here in c.i.w.a.s.?

A.
1) Validate your HTML (http://validator.w3.org/) and your CSS
(/jigsaw.w3.org/css-validator/) to help eliminate structural errors.
2) Triple-check your code and CSS for obvious errors.
3) Search this newsgroup
(http://groups.google.com/groups?&gro...ng.stylesheets)
for recent discussion of the issue.
4) If you still cannot find the solution, post:
a. the URL of a page showing the problem (either the actual page or a
dummy setup if the actual page isn't for public view)
b. describe the problem as you see it
c. describe what you're intending to happen that isn't happening
d. tell us in what specific browsers you are seeing the problem
5) Be patient and wait, this may be that hour we are not at the computer.
6) If, rather than a pat solution to your problem, you get an explanation
of why there's deeper problems that make this issue trivial, don't get mad
at us.
7) If we start arguing about the proper solution, pour your favorite
beverage, sit back and enjoy the show.
Feel free to edit if I've forgotten something in my
less-than-adequately-caffienated state...


That seems to cover the main points. You might also include a line or
two on what is on-topic in c.i.w.a.s, and what other related newsgroups
are available.

Now all you need to work out is how to get the offenders to read it ...

You could try posting it once a week or so, to see if it helps.

--
Stephen Poley

http://www.xs4all.nl/~sbpoley/webmatters/
Jul 20 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
2686
by: Michael Winter | last post by:
I have the familiar 'thumbnail' scenario. I want to place a small border around the image when the cursor hovers above it. I use a 1 pixel, solid border around the image that changes between normal and hover. This works fine in Internet Explorer, but in Opera 7.22, the bottom border is 3 pixels thick. If I expand all borders to 3 pixels, this bottom border is still 2 pixels thicker than the others, which suggests that padding or a...
2
2631
by: Wim van Iersel | last post by:
I hope somebody knows what I´m doing wrong here I have a page with two stylesheets: - default.css media="screen, print" http://www.tilburg.nl/development/stylesheets/default2.css - print.css media="print" http://www.tilburg.nl/development/stylesheets/print.css In the print.css I reset the background-image, background-color,
24
2890
by: Thomas Mlynarczyk | last post by:
Hi, Here's what I have: <div> <img ...><br> Caption text </div> The div is floated left and has no width set, the content is centered, there are no margins or padding on the <img> (just a bottom margin and
4
2469
by: William Tcherust | last post by:
I'm volunteering for this site using CSS, but Safari 1.2.4 and Opera 6.0 are not rendering my stylesheet as intended. Even though I did most of the job, there's still a bug that I just can't work around yet. Here the link: http://www.vinculando.org/en/fairtrade/globalfairtrade.htm and here the CSS code: http://www.vinculando.org/library/screen.css I guess the problem may be over here: #links {
10
5434
by: Andrew | last post by:
I'm developing a site using CSS layout. One of the main divs contains the content, another contains the side bar. I want the content next to the sidebar so the content is floated left and the sidebar is floated right. This looks fine is Firefox and IE but doesn't in Opera ( Opera 6 screenshot - http://www.browsercam.com/projects/171753/3119279.jpg ). I can't find any reference to any bugs in Opera that would cause it to behave like this,...
18
7005
by: Francois du Toit | last post by:
Can someone confirm this: http://www.purpleray.za.net/opera_bug.html
1
3108
by: VK | last post by:
Formally it may appertain to a CSS newsgroup, but from the other side it is *dynamic* plus it is JavaScript based. Anyway I had a customer who wanted cross-browser full-Aqua (Office XP style) so I had to hack Opera for it. This algorithm formally *doesn't* break a single standard, moreover it works as intended on Opera only (I hope they did not mean *that* as their official opacity path).
7
1551
by: kmw | last post by:
Page is www.oldvillagemasterpainters.com/about.aspx I have validated both the html and the css. Css gives me warnings about background colors but passes. My problem is this: There is a ul menu on the left side of the page that renders as I would like it to in IE7 (and I believe in IE6) but doesn't look so good in Opera 9.25 or FF 2. In opera the list looks to be in-line and wraps within the containing <div> In FF the list is in-line...
13
1550
by: BMc | last post by:
I just want to take a moment to say thank you to so many of you who posted a response to my request for help about the problem with THE GAP (see below?)! Your suggestions were not only a solution to the problem, but they were given in a way that encouraged further learning about the subject and gave me more information that helped me move forward today. I have actually gotten the page to work with the same style sheet for ff, opera,...
0
9423
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10212
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10047
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
7410
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6674
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5304
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5447
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3563
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2815
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.