callumms
Feb 12 2008, 10:46 AM
| | Help? I've uploaded all of the html files and css files into the public_html folder , but the css isn't taking effect. I've checked both the css and te html files , nothing wrong with them. Halp me? www.genesis.trap17.com/home.html  |
Comment/Reply (w/o sign-up)
rvalkass
Feb 12 2008, 11:09 AM
The directory 'style' doesn't appear to exist. Make sure you created the style directory inside the public_html directory, otherwise it is not publicly accessible. After a bit more probing it appears that you didn't actually create the style directory you refer to in your HTML. Make that directory and move the two CSS files into it and it should then take effect.
Comment/Reply (w/o sign-up)
callumms
Feb 12 2008, 11:16 AM
QUOTE(rvalkass @ Feb 12 2008, 11:09 AM)  The directory 'style' doesn't appear to exist. Make sure you created the style directory inside the public_html directory, otherwise it is not publicly accessible.
After a bit more probing it appears that you didn't actually create the style directory you refer to in your HTML. Make that directory and move the two CSS files into it and it should then take effect. Sorry to sound stupid but how would I do that? I'm a bit new to this =[
Comment/Reply (w/o sign-up)
A200
Feb 12 2008, 11:37 AM
You can make that folder via FTP or cPanel File Manager. And to move the files, you just click it and select the folder you want to move it to  Make sure the folder name is ABSOLUTELY THE SAME as where it should be. I hope that helps
Comment/Reply (w/o sign-up)
jlhaslip
Feb 12 2008, 02:06 PM
imbibe
Feb 12 2008, 05:19 PM
Do look the folder structure on your server through CPanel or FTP as pointed out by others. The site isn't displaying correctly on FF.
Comment/Reply (w/o sign-up)
callumms
Feb 12 2008, 05:29 PM
QUOTE(jlhaslip @ Feb 12 2008, 02:06 PM)  Do the images work? I can't get them going on my Pc =/
Comment/Reply (w/o sign-up)
rvalkass
Feb 12 2008, 09:19 PM
This is again down to your directory structure. In your CSS, you have lines like this: CODE background: #FFFFFF url(main.png) repeat-y; That path, main.png, corresponds to the current directory - /public_html/style/. Of course, there is no file called main.png in that directory. Through a lucky guess I found that it was in a folder called images, which is inside the public_html directory. To represent this in your CSS, you need to use the sequence of characters that means "go to the previous directory". That sequence of characters is ../So, to get from the styles directory to the images directory, we need to go up one level to the public_html directory, then into the images directory, then finally we can find main.png This means your code needs to actually say: CODE background: #FFFFFF url(../images/main.png) repeat-y; That needs to be changed for every path to an image in the CSS file colours.css. For your benefit, I've done that below. Just put the code below in your colours.css file instead of the code that is there at the moment: CODE body { background: #FFFFFF url(../images/back.png) repeat; color: #57696F; }
blockquote { background: #FFFFFF; color: #57696F; border-color: #1798E9; }
#main { background: #FFFFFF url(../images/main.png) repeat-y; color: #57696F; }
#links, #footer { background: #1798E9 url(../images/linkfoot.png); color: #FFFFFF; border-color: #57696F; }
#links a, #footer a, #links a:hover, #footer a:hover { background: transparent; color: #FFFFFF; }
#logo { background: #FFFFFF url(../images/logo.jpg) no-repeat; color: #57696F; border-top-color: #57696F; border-bottom-color: #1798E9; }
#logo h2 { background: transparent; color: #CCC; }
h1 { background: transparent; color: #1798E9; border-color: #E1E1E1; }
#menu { background: transparent; color: #57696F; }
#menu li a { background: #76C9F8; color: #57696F; border-color: #109CEF; }
#menu li a:hover, #menu li a#selected, #menu li a#selected:hover { background: #109CEF; color: #FFFFFF; }
#content, #column2, #column2 a { background: #FFFFFF; color: #57696F; border-color: #57696F; }
#column2 a:hover { background: #FFFFFF; color: #1798E9; border-color: #1798E9; }
.sidebaritem { background: #F9F9F9; color: #57696F; border-color: #E1E1E1; }
.sbilinks li a, .sidebaritem a { background: transparent url(../images/link_arrow.png) no-repeat left center; color: #57696F; }
.sbilinks li a:hover, .sidebaritem a:hover { background: transparent url(../images/link_arrow_sel.png) no-repeat left center; color: #1798E9; }
input, textarea { background: #FFFFFF; color: #57696F; border-color: #E1E1E1; }
Comment/Reply (w/o sign-up)
callumms
Feb 13 2008, 01:22 PM
QUOTE(rvalkass @ Feb 12 2008, 09:19 PM)  This is again down to your directory structure. In your CSS, you have lines like this: CODE background: #FFFFFF url(main.png) repeat-y; That path, main.png, corresponds to the current directory - /public_html/style/. Of course, there is no file called main.png in that directory. Through a lucky guess I found that it was in a folder called images, which is inside the public_html directory. To represent this in your CSS, you need to use the sequence of characters that means "go to the previous directory". That sequence of characters is ../So, to get from the styles directory to the images directory, we need to go up one level to the public_html directory, then into the images directory, then finally we can find main.png This means your code needs to actually say: CODE background: #FFFFFF url(../images/main.png) repeat-y; That needs to be changed for every path to an image in the CSS file colours.css. For your benefit, I've done that below. Just put the code below in your colours.css file instead of the code that is there at the moment: CODE body { background: #FFFFFF url(../images/back.png) repeat; color: #57696F; }
blockquote { background: #FFFFFF; color: #57696F; border-color: #1798E9; }
#main { background: #FFFFFF url(../images/main.png) repeat-y; color: #57696F; }
#links, #footer { background: #1798E9 url(../images/linkfoot.png); color: #FFFFFF; border-color: #57696F; }
#links a, #footer a, #links a:hover, #footer a:hover { background: transparent; color: #FFFFFF; }
#logo { background: #FFFFFF url(../images/logo.jpg) no-repeat; color: #57696F; border-top-color: #57696F; border-bottom-color: #1798E9; }
#logo h2 { background: transparent; color: #CCC; }
h1 { background: transparent; color: #1798E9; border-color: #E1E1E1; }
#menu { background: transparent; color: #57696F; }
#menu li a { background: #76C9F8; color: #57696F; border-color: #109CEF; }
#menu li a:hover, #menu li a#selected, #menu li a#selected:hover { background: #109CEF; color: #FFFFFF; }
#content, #column2, #column2 a { background: #FFFFFF; color: #57696F; border-color: #57696F; }
#column2 a:hover { background: #FFFFFF; color: #1798E9; border-color: #1798E9; }
.sidebaritem { background: #F9F9F9; color: #57696F; border-color: #E1E1E1; }
.sbilinks li a, .sidebaritem a { background: transparent url(../images/link_arrow.png) no-repeat left center; color: #57696F; }
.sbilinks li a:hover, .sidebaritem a:hover { background: transparent url(../images/link_arrow_sel.png) no-repeat left center; color: #1798E9; }
input, textarea { background: #FFFFFF; color: #57696F; border-color: #E1E1E1; }
That still doesn't work. I replaced the old Css file but it still doesen't work =/ sorry if I'm sounding stupid
Comment/Reply (w/o sign-up)
Similar Topics
Keywords : css, problem, website, ive, uploaded, html, css, files, css, isnt, working,
- Somebody Uploaded A File Onto My Hosting Account [resolved]
(4)
Mass Transfer Files
(9) I just got a new domain, and want to move the stuff from my old site to the new domain. The problem
is it is all on the root directory. How can I easily move everything?....
Troubles Extracting Zipped Files
(15) Well I haven't been able to extract any sort of archived files. Everytime I do, no matter what
size they are, I seem to get a fairly big error. I forgot to copy the error, so I don't have
the exact writing of it. But, it has happened with .zip files and .rar files. ( I tried .rar just
to see if it would give the same error.) Has anybody had the same problem? I mean I could easily
just use an FTP and import file by file, but uploading by archiving the files is easier.....
How To Add Files To My Sql Database
(3) Hey im trying to add a file to my My SQL Database, Any idea how I can do this? Any help would be
appriciated. Thanks!....
How To Transfer Files Directly From My Computer To The Trap17 Account
(8) Hi! I've been hosted in trap17 for almost 4 months now. In the beginning, I tried to setup a
WebDisk to directly transfer files from my computer to my hosting account, but I didn't manage
to make it work. It might have been from my Vista's weird firewall settings, or my ISP settings,
I have no idea. Anyway, I used the File Manager since, as I don't have a lot of files on my
site. Needless to say, it is really annoying when I do just some little changes and I have to go
again through CPanel, FileManager, UploadFile... pffff So my question to you... How....
Mysql Database Not Working
(3) well i'm getting an error message(a databass connection warning) for all of the parts of my site
that connects to a mysql database i check my database users pertmissions and i try to do the repair
database thing and it's still not woeking. am i the only person having this or is it an overall
trap17 issue and how do i fix it.....
I Cannot See My Website Or Log Into Cpanel
(7) Ok, I finally got my form approved after that massive wait because of some issue and now, my
computer decides not to load up my site! - My site does not load up on either browser, I cannot
ping it (but it resolves the IP) - It loaded ONCE. And never after that - It's not my network, I
used my neighbors wireless to verify that Can anyone help me? PS. I am samlockart.trap17.com....
Gallery Not Working
(2) Alright, the Gallery module from Fantastico always used to work for my site. Now it's suddenly
stopped functioning and I can't even access the control panel for it. My Iframe page linking to
it gives one long error message: QUOTE Error Error (ERROR_STORAGE_FAILURE) : * in
modules/core/classes/GalleryStorage.class at line 226 (GalleryCoreApi::error) * in
modules/core/classes/GalleryStorage.class at line 453 (GalleryStorage::_getConnection) * in
modules/core/classes/Gallery.class at line 202 (GalleryStorage::search) * in
modules/core/classes....
I Can && Cannot Acces My Website
Confusing issue. (5) I am a hosted member in trap17 and my domain is www.karunya.cc . I have been not able to access my
website for few days and i had PM'd the admin and he provided me great support,but still i have
some confusion , so please anyone help me . My domain was now accessible using my true IP . On the
other hand if i use a Proxy i am able to access my website , so i had given my true IP's
220.225.140.98, 210.212.244.4 to Xisto to check whether they are in the IP ban List in Xisto
firewall , the internet im using is provided by my college and im sure here there is not ....
Backup Not Working [resolved]
(5) I am trying to backup my files on my account(in preparation for the next server disaster), and I am
unable to download it. In my CPanel I goto the back-up screen to generate a full backup. Once
that's done and its ready to be downloaded, It only downloads to 13% or 50mb before stopping.
With and without a download manager. It doesn't help that resume is not supported in download
managers. I have too many files on my account to backup with an FTP client, that would take hours
and hours. What can I do to get a backup of my account?....
File Manager Not Working
(2) When I goto upload files using the file manager(legacy mode), the files do not upload correctly.
Every time I try to upload a file, it takes the time to upload it, but the file always comes out
being 0kb so it does not upload the file. Why is this happening?....
I Am Looking Into Going With A Paid Hosting Service And Trap17 Has Been Good To Me So Whats The Paid Hosting's Website?
(7) I am looking at different solutions for paid hosting and I know that that trap17 has some connection
with a paid hosting company and I would like more info about it because I like the way this place is
run and it has been a good place to have my website. So what is the site for the paid hosting?....
Porn Ads Showing On My Website O_o
(13) ok.. so i have a thing to look exesevely at my website.. & the hell.. like 4 times already a random
porn add shows up a hot babe is waiting for you, or something like that. i dont know whats wrong,
if something hacked my website, and added that, or if its my computer, with some nasty virus again
o.o anywho, yea, i tried doing some research and nothing shows up!!!! help?....
Need Help With Masking A Website
(9) Ok, so I'm having a problem with my website and several hours of scouring Google has done me no
good towards finding a solution. So, on to my problem. I got hosting here, thus
www.thewheeldeal.trap17.com was created. I then bought a domain from GoDaddy, and had it so that it
was masked to www.maliciousintent.net. My problem however is that no matter WHERE you are on the
website, "www.maliciousintent.net" still shows in the address bar. This makes it difficult for
people to link directly to content, and I feel that would be a huge hindrance once it picks up. Ca....
My Website Takes Ages To Load
(19) Is it just me or is my website taking a very long time to load? http://www.princesstimes.com It
usually loads very quickly previously, and I haven't added anything to it recently to cause it
to take a long time to load.....
Can't Post In Website Discussions? [resolved]
(3) It seems I can't start a new thread. I started a thread named: Best Websites With the message:
QUOTE http://www.thefwa.com/ Brillant site, I've looked at alot of the winners and
i'm in amazment in how good they are. Best that i've seen is the Halo 3 Believe website,
very indepth and detailed. Check that site out for inspiration and that. Any suggestions?....
Where Do I Upload My Ftp Files? [resolved]
As in, which directory? (2) I recently got approved for hosting. I have an account right now, but I don't know which
directory to post my FTP stuff in. (I don't know if this is in support or not; the search
results didn't return anything.) I remember with my last host that had CPanel that you had to
upload it into the "public_html" folder. So I do that, or do I just upload it into the root
directory? Thanks in advance! (EDIT: Oh, never mind, it is /public_html.)....
My Subdomain Not Working
imbibe.in (4) I have a addon domain in my account (ramansingla.info): imbibe.in All subdomains on imbibe.in work
fine but one. ike.imbibe.in isn't working. It's more than 24 hrs that I created it. Also
when I tried to change Nameservers for ramansingla.info at GoDaddy for Primary Nameserver I entered
NS.COMPUTINGHOST.COM & GoDaddy said Invalid. Kindly help as it is urgent. Thanks & resolved .......
Transferring Files From One Host To Another
Take my site to trap17 (9) As I said, I had to move my web site away from Trap17 temporarily because I had ran out of disk
space. Now, when my upgrade is finalised, I would like to ask for a little assistance. The provider
I will be moving my site from, back to Trap17 also uses Cpanel, and the admin let me know to do a
backup and that backup could be simply transferred via FTP to my new provider. The backup includes
all my files and MySQL data, in other words, the whole web site. It is in a .tar.gz format. How do I
get all this across? Do I 'unzip' the file and then transfer them bit by bi....
.php?id=html Not Working
(15) I use a single php file for all my tag decorations and image calling so that each page is lighter
and therefore isn't bogged down with the same repeated code over and over, which allows me not
only to much easier change my layout and design (as I often do) but once I've finally gotten it
up and working here, I realized none of the links work, I doubled, and triple checked them over and
over again to make sure I wasn't making a mistake. I swore trap17 supported php, so why
isn't it working? Am I missing some sorta code that i need to add, or need to take a....
Toolbar Not Working (adobe Dreamweaver)
I dont know why but it doesnt link. (7) See, my toolbar is made up of 8 buttons. They are: Home | Lessons | Theory | Links Videos| Extras
| Forums | Feedback To make my website, I use adobe Dreamweaver CS3. if youve ever used it, youll
know that if you want to make an image a link, you need to click it and fill in the link box at the
bottom and then make the border 0. The annoying thing is, lets say I type in in the link box for
Home "index.html". Then, I take a look at lessons. Suddenly, that box is filled with index.html too!
So, I quickly change that box to lessons.html. But then (this is where the prob....
Help My Forum Connection Isn't Working
(5) can anybidy help me. I have had a forum amde and I can;t access it??????? Contribute with quality.
You could have gave more information like which forum software, URL to your forum, what error
message and the exact nature of the issue, i.e. it shows this but not that...or not showing at all. ....
Is Creating A Real Website A Very Difficult Job? Need Help!
(60) I have read all the tutorials, listened to countless advice about creating a webpage, tried to
understand the very difficult alien language of HTML, tried everything for twenty-four hours and
still I cannot make a webpage. I figure creating a real webpage is one of the hardest of things to
do, this is why so many people go to the atrocious made easy myspace.com or pay other people to make
a website for them. Seriously speaking, not to criticize anyone, but I find making a website the
most frustating task I have ever had to undertake. I feel like I need to take up a one t....
How To Upload Zip Files?
(6) Hello.. I want to upload MSN emoticons packs on my site.they are in zip file... I want to upload
that zip file , ,and i made an index page and made the gif file of the emoticon pack and then i put
hyperlink of that gif file to zip file , but when i uploaded the site , and it doesnt work , when i
click on the gif image , instead of the zip file start to download , i get this page
website.com/emoticons.zip/ Index of /emoticons.zip Name Last modified
Size Description -------------------------------------------------------------------------------....
Help Moving Mysql Files To A New Host
IPB files (2) Well, my partners on my forum has decided to move our site to a newer host. A paid one to be exact.
And we did that already. Now all we need to do is move our forum over to the new host. We want to
do this without losing all of our posts and other data. I know it has something to do with the MySQL
files but I don't really understand it. Some help would be appreciated. We are running Invision
Power Board 1.3.1 final Also, we're thinking about upgrading our board to a newer version of
IPB because we heard that its better in more ways than one. But then again, it....
Error Using "move_uploaded_file()"
Permission denied to perform this action (5) I, on my website, have employed a page to upload files on my website. But I'm having problems
using it. When the file is uploaded to the 'temp' directory of my account, and when I use
the function 'move_uploaded_file()' to move this file into the actual directory, it returns
the error move_uploaded_file(ABD.jpg): failed to open stream: Permission denied
move_uploaded_file(): Unable to move '/tmp/phpF5SqzC' to 'ABD.jpg' please help me
what should now I do with this.. I also tried changing the mode of the 'temp' directory to
7....
Problems With Outlook Express
My email configuration isn't working (8) Does anyone have a clue as to why my outgoing email isn't working with Outlook express? I can
get incoming mail, but I'm getting an error when I try to send email. I followed the
configuration instructions, but it still isn't working correctly. I get an error everytime.....
My File Manager Is Working
(2) I tried to change the html for my site in file manager but it just has the default page - the one
when you activate your site. /sad.gif' border='0' style='vertical-align:middle' alt='sad.gif' />
How do i change files?....
Blank Images - (white Square W/red X)
FTP uploaded images don't display (9) Hey Guys, PROBLEM: Uploaded website & all images display as blank white box with red X on the
webpages. Tech Info: Am using domain hosting (not subdomain hosting) All my html pages are in
folder "public_html". All my images are present in folder named "userfiles". Both folders are "root"
on the server in my cpanel (ie. not in subfolders). The html code on my webpages "pointing"
(incorrectly???) to the images is: QUESTION: 1) Whats up??? 2) Is this html 3) Does the Xisto
server require that images only be placed in a specific folder OR subfolder in order to display....
Problems with PHPBB & my Access to files :S
(4) Ok another problem i'm having.. prolly my fault but ok.. i go to uploud my avatar on my forums
and it says this after i click submit Warning: copy(./images/avatars/486273215410e356f445f1.jpg):
failed to open stream: Permission denied in /home/zipmc/public_html/Forum/includes/usercp_avatar.php
on line 227 Warning: Cannot modify header information - headers already sent by (output started at
/home/zipmc/public_html/Forum/includes/usercp_avatar.php:227) in
/home/zipmc/public_html/Forum/includes/page_header.php on line 474 Warning: Cannot modify header
information - h....
Looking for css, problem, website, ive, uploaded, html, css, files, css, isnt, working,
|
Searching Video's for css, problem, website, ive, uploaded, html, css, files, css, isnt, working,
See Also,
|
advertisement
|
|