Log in

View Full Version : two css files create problems



esparkinfo
08-28-2012, 06:56 AM
Hello,

this is very basic or can say very stupid quation, but need to know the solution.

i have seen that it's normal to have two css file in document, but in my file it's conflict

i have used Java Script in manu for my one of the client... from the tutorial with css file... tutorial css file. Now i am looking for css file menu to style the rest of the page.

does any body have the idea for combine the stylesheets in one file?

any suggestion or ideas anything is appriciate regarding this case.. kindly help me out.

Thanks in advanced.

bernie1227
08-28-2012, 09:07 AM
can't you simply put the corresponding css rules in the right places in the largest css file? Ie, imagine you have:


body{
css stuff
}

and then you have different body rules in another file,


body{
other stuff
}

you can just put them all in one file, as such:


body{
css stuff
other stuff
}

and then, if there is anything conflicting, it will be easy to tell and go through and delete.

esparkinfo
08-29-2012, 10:28 AM
Thank you sir...
i have good time here learn from you...
really thanks... :)