Guest Posted December 5, 2005 Posted December 5, 2005 Is there anyone out there that can tell me how to make changes to the "store". I am very new to this kind of computer work. Actually, I dont know anything about PHP or HTML, or really editing. I want to change the font on the whole site, background color to black, And the title thing from osCommerce to my company name. my friend gave me this for the online store and then told me I was on my own. well, I have been reading, testing and trying to figure this out for days and I just can no figure it out. If there is anyone out there that can help me, it would be much appreciated. thanks
super_chump Posted December 5, 2005 Posted December 5, 2005 Is there anyone out there that can tell me how to make changes to the "store". I am very new to this kind of computer work. Actually, I dont know anything about PHP or HTML, or really editing. I want to change the font on the whole site, background color to black, And the title thing from osCommerce to my company name. my friend gave me this for the online store and then told me I was on my own. well, I have been reading, testing and trying to figure this out for days and I just can no figure it out. If there is anyone out there that can help me, it would be much appreciated. thanks Background color change: catalog/stylesheet.css Look for this code and change the background color code to whatever you want ....the "color" is for text color BODY { background: #FFFFFF; color: #000000; margin: 0px; } Changing the text: catalog/stylesheet.css There are many different places to change text, just search them all out....here is an example: TD.headerNavigation { font-family: Verdana, Arial, sans-serif; font-size: 10px; background: #66CC33; color: #000000; font-weight : bold; } Just change "font family" to whatever you want and the size the same way The title change can be made in: catalog/includes/languages/english.php Here is the code: define('TITLE', 'Your Title Here');
Guest Posted December 5, 2005 Posted December 5, 2005 Background color change: catalog/stylesheet.css Look for this code and change the background color code to whatever you want ....the "color" is for text color BODY { background: #FFFFFF; color: #000000; margin: 0px; } Changing the text: catalog/stylesheet.css There are many different places to change text, just search them all out....here is an example: TD.headerNavigation { font-family: Verdana, Arial, sans-serif; font-size: 10px; background: #66CC33; color: #000000; font-weight : bold; } Just change "font family" to whatever you want and the size the same way The title change can be made in: catalog/includes/languages/english.php Here is the code: define('TITLE', 'Your Title Here'); OK, I think I can figure that out, but where do I do this, in osCommerce, or somewhere else, and if somewhere else. how do I do it. I am really lost.
♥Vger Posted December 5, 2005 Posted December 5, 2005 Go to www.oscommerce.com and download the pdf document of the MS2 Knowledge Base - which you really need to read up on. Unfortunately the active Knowledge Base has been given over to MS3, which has yet to be released. If you intend using a black background then you'll also need black buttons with white text, so look below my name for the Black Buttons contribution. Vger
Recommended Posts
Archived
This topic is now archived and is closed to further replies.