CSS/Images problem

Status
Not open for further replies.

synerg10

New Member
Messages
5
Reaction score
0
Points
1
I can't seem to get the CSS to load for my website, I have tried a few different href links, ex.
HTML:
    <head>
        <title>Synergy, Inc.</title>
        <base href="http://synergy.x10host.com/">
        <link rel="stylesheet" type="text/css" href="etc/style.css">
        <link rel="shortcut icon" href="etc/images/synergy.png">
    </head>
HTML:
    <head>
        <title>Synergy, Inc.</title>
        <link rel="stylesheet" type="text/css" href="http://synergy.x10host.com/etc/style.css">
        <link rel="shortcut icon" href="etc/images/synergy.png">
    </head>
HTML:
    <head>
        <title>Synergy, Inc.</title>
        <link rel="stylesheet" type="text/css" href="etc/style.css">
        <link rel="shortcut icon" href="etc/images/synergy.png">
    </head>
But none of them seem to work. When I view http://synergy.x10host.com/etc/style.css it will tell me forbidden 404 and 403 error blah blah. I read on some other threads that it may be a mod_security
 

essellar

Community Advocate
Community Support
Messages
3,295
Reaction score
227
Points
63
You can't access files outside of public_html from the web. Your CSS and image files would need to be moved if you want them to be loaded by the browser.
 

synerg10

New Member
Messages
5
Reaction score
0
Points
1
You can't access files outside of public_html from the web. Your CSS and image files would need to be moved if you want them to be loaded by the browser.
They're inside of the public_html folder though...

**EDIT**
Fixed the problem, I just had to change the name of my etc folder to something else
 
Status
Not open for further replies.
Top