theme help

Gouri

Community Paragon
Community Support
Messages
4,565
Reaction score
245
Points
63
hii

this is the theme i want on my site
http://www.free-css.com/free-css-templates/page104/gameportal.php#bookmarks

i uploaded the index and the css
but all i see is just a plain text and a white background.
how do i fix this

I think the css file is not in the place, Its missing or not loading,

Check that did you renamed it or something. The servers are linux and the filenames are case sensitive.
I think the css file should be in css folder and named style.css
 
Last edited:

remnightfal

New Member
Messages
25
Reaction score
0
Points
0
I think the css file is not in the place, Its missing or not loading,

Check that did you renamed it or something. The servers are linux and the filenames are case sensitive.
I think the css file should be in css folder and named style.css

i did all that it still white background and black text
 

misson

Community Paragon
Community Support
Messages
2,572
Reaction score
72
Points
48
What's the URL for your test page? It's next to impossible to answer questions about coding without seeing the code. Including links to a live page is part of being precise and informative.
 
Last edited:

kaepos

New Member
Messages
24
Reaction score
0
Points
0
Are you still having problems? I took a quick look at the html code for the index file and it's calling for the css in css/style.css

Code:
<link rel="stylesheet" href="css/style.css" type="text/css" media="all" />

You can change that to

Code:
<link rel="stylesheet" href="style.css" type="text/css" media="all" />

or make a css folder and put style.css in there.
 
Top