473,666 Members | 2,048 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Weird problem with background-repeat:repeat-y;

14 New Member
Hey everyone,
I am havin a problem here, maybe someone could lend me their mind for a second. Here it is:

I am using a repeat background on a y axis. When I am testing the file from my desktop...it is fine but when I put the file on my server to test it there...the content is being diplayed but not the background...an y ideas? Here's the css:

p{
margin-left:70px;
width:650px;
}

.content_repeat {
background-image:url(image s/content_repeat. jpg);
background-repeat:repeat-y;
width:800;
position:relati ve;
top:-16px;
border:solid;
}

.content_footer {
background-image:url(image s/content_footer. png);
background-repeat:no-repeat;
height:26px;
position:relati ve;
top:-32px;
}

and here's the html excerpt:

<div class="content_ repeat">

<p>Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy TextDummy TextDummy Text,Dummy Text,Dummy Text,Dummy Text
</p>

<p>Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy TextDummy TextDummy Text,Dummy Text,Dummy Text,Dummy Text
</p>

<p>Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy TextDummy TextDummy Text,Dummy Text,Dummy Text,Dummy Text
</p>

<p>Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy TextDummy TextDummy Text,Dummy Text,Dummy Text,Dummy Text
</p>

<p>Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy TextDummy TextDummy Text,Dummy Text,Dummy Text,Dummy Text
</p>

</div>

<div class="content_ footer"></div>


I'd really appreciate someones help on this one.

Thanks,
Aug 21 '07 #1
3 2965
Death Slaught
1,137 Top Contributor
Hey everyone,
I am havin a problem here, maybe someone could lend me their mind for a second. Here it is:

I am using a repeat background on a y axis. When I am testing the file from my desktop...it is fine but when I put the file on my server to test it there...the content is being diplayed but not the background...an y ideas? Here's the css:

p{
margin-left:70px;
width:650px;
}

.content_repeat {
background-image:url(image s/content_repeat. jpg);
background-repeat:repeat-y;
width:800;
position:relati ve;
top:-16px;
border:solid;
}

.content_footer {
background-image:url(image s/content_footer. png);
background-repeat:no-repeat;
height:26px;
position:relati ve;
top:-32px;
}

and here's the html excerpt:

<div class="content_ repeat">

<p>Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy TextDummy TextDummy Text,Dummy Text,Dummy Text,Dummy Text
</p>

<p>Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy TextDummy TextDummy Text,Dummy Text,Dummy Text,Dummy Text
</p>

<p>Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy TextDummy TextDummy Text,Dummy Text,Dummy Text,Dummy Text
</p>

<p>Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy TextDummy TextDummy Text,Dummy Text,Dummy Text,Dummy Text
</p>

<p>Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy Text,Dummy TextDummy TextDummy Text,Dummy Text,Dummy Text,Dummy Text
</p>

</div>

<div class="content_ footer"></div>


I'd really appreciate someones help on this one.

Thanks,
I have no idea what the problem is it works perfectly in myn but i would put your urls in " " qoutes i dont know if that will help but i tried it both ways and it worked maybe some one else will know. Good Luck!

Thanks, Death Slaught
Aug 21 '07 #2
jacksoncn
14 New Member
Fixed it! GREAT SUCCESS!!!
Aug 21 '07 #3
jacksoncn
14 New Member
I have no idea what the problem is it works perfectly in myn but i would put your urls in " " qoutes i dont know if that will help but i tried it both ways and it worked maybe some one else will know. Good Luck!

Thanks, Death Slaught
thanks. the code WAS fine. i had defined the site in a root folder and the location paths were not the correst ones and so they did not display. so i just slaughtered the root folder and that did the trick. i really appreciate your help though. regards.
Aug 21 '07 #4

Sign in to post your reply or Sign up for a free account.

Similar topics

2
2360
by: Gabriel Afana | last post by:
I have a simple php script to just send email.....When I first load the script in a browser...it sends 2 emails. Why?? The weird thing is then when I refresh the page, it send only one email...I can refresh the page a million times and each time it only sends 1 email. But its the first time the page is loaded (like I open a new IE browser and go to the script), it sends 2 emails (duplicates). The entire script is below: <?php $to...
3
1514
by: Betty Perea | last post by:
I'm having a little weird condition. I have a simple form (POST method), whose Action is a validation script, most of the times it works. But sometimes, the validation script does not "receive" the variables from the form script. The code is very simple, so I think I should review some of the parameters of the PHP version (4.3.4) installed in the server where my site is hosted, but I'm not sure which of them I should check. Does somebody...
3
2075
by: redneck_kiwi | last post by:
Hi all: I have a really weird problem. I am developing a customer catalog system for my company and as such have delved into sessions for authentication and access levels. So far, I have managed to get a working system just about finished. I am building an interface for our customer service folks to use to manage registered customers and am seeing some weird behavior.
21
2061
by: Steven Bethard | last post by:
Can someone point me to the documentation on what's supposed to happen when you use the "for x in X:" syntax when X does not have an __iter__ method? I know that the code: >>> class S: .... def __len__(self): return 42 .... def __getitem__(self, i): return i .... >>> for x in S(): .... print x
82
5339
by: nobody | last post by:
Howdy, Mike! mikecoxlinux@yahoo.com (Mike Cox) wrote in message news:<3d6111f1.0402271647.c20aea3@posting.google.com>... > I'm a C++ programmer, and have to use lisp because I want to use > emacs. I've gotten a book on lisp, and I must say lisp is the ugliest > looking language syntax wise. What is up with this: (defun(foo()). (DEFUN FOO () NIL) > What were the lisp authors thinking? Why did Stallman use lisp in
7
1766
by: John Smith | last post by:
Today I experienced something very very weird with STL. The code snippet below should work, but it doesn't with Microsoft VC++ 6.0. Ok what I have is a list of network connections. The code below removes one of these connections from a temporary list. It goes through all the items to find the right connection and removes it by erasing with the matching iterator. However what happens is that the item stays in the list after beeing...
5
2282
by: John Douglass | last post by:
I'm fairly new to doing involved file i/o and I came across something weird with a program I'm writing (modifying MIDI data, if it makes any difference). With some input files, when I modify data and then output to a new file, the program will crash. The catch is that when I open up the output file to see what the program managed to write, it always makes it to an offset of xFFF. For example, with one file it crashed at 2FFF, another at...
13
1823
by: Lars Netzel | last post by:
hi! myDataSet that is fillled from an Access 2000 db and includes ONE table From that Table in myDataSet I create myDataView and use a Rowfilter to get a few rows that i work with (i need a DataView cause I do a lot of filtering) The problem is the primary key field (a unique counter), let's call it "TBL_ID".
9
1132
by: Mirza | last post by:
We discovered that when you declare a function and variable with the same name adding New key word to the variable, vb.net hangs when you try to build the project : imports System.Data imports System.Data.SqlClient Public Class TestBug Public Function DoSomething(ByVal dummy As Integer) As IDataAdapter
0
1824
by: P Pulkkinen | last post by:
Dear all, sorry, i know this code is far little too long to debug here, but there is really annoying logical error. If someone debugs this, I really offer warm virtual handshake. What this code SHOULD do: - read new (=updated) licensetext from file $license_path then - read and modify recursively all files from $current_dir, replacing old
0
8356
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
8871
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...
1
8551
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8640
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6198
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
5664
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
4198
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
4369
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2771
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

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.