Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Do i need to know code


justmake

Recommended Posts

The stylesheet isnt to hard.

 

Just jump in and have a go and you will learn from your mistakes.

 

You dont have to know code, just what each part does which is all explained in a document on the last link i gave you.....perhaps search for stylesheet on that link.

 

The doc will tell you what part does what.

 

It is not as bad as it seems, just change a colour and see what the result is and go from there.

Link to comment
Share on other sites

If i know the answer to this one i should be able to do the rest. Q: how do i change the oscommerce logo to my logo.

I downloaded all the files from my server and when i open the index.php file in Dream W there is only boxes and headers and things. I am used to seeing a picture where the picture would be and so on

Link to comment
Share on other sites

To change the picture at the top of your page from oscommerce to what ever:

 

go to the file catalog/includes/header.php

 

And on about line 57 you will see:

 

<td valign="middle"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'oscommerce.gif', 'osCommerce') . '</a>'; ?></td>

 

put your image in the images folder and then change the above bit of code to eg:

 

<td valign="middle"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'newheaderpic.gif', 'picturename') . '</a>'; ?></td>

 

This will giveyou your new pic and a ALT tag for the pic

 

HTH

 

Cheers, Tim

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...