oscommerce help please

Associate
Joined
21 Oct 2002
Posts
1,680
Location
UK
Hi Folks,

I have got my page set out about how I want it but I am having difficulty changing the options for by search/ catorgory/ etc boxes. Where can I change the border details and boxground etc? I have changed the headings but I can't find these settings anywhere!

Thanks

Matt
 
Hi

If you want different boxes

find the includes/classes/boxes.php

Create a new class

Create new style in the stylesheet
add new css to the stylesheet

look for the boxes folder & simply change the class created in the boxes.php file i.e. search.php

If you only want to change the look then just change the css in the stylesheet.css

Regards

Dave
 
Hey,

I want to keep the current boxes but just want to modify the look of them but I can't seem to find the settings anywhere. Where can I modify the Borders etc of the default boxes
 
look in images/infobox/ all the gifs are the top of the boxes

as for the box backgrounds & border look in the stylesheet.css

default oscommerce stylesheet

Code:
.infoBox {
  background: #b6b7cb;
}

.infoBoxContents {
  background: #f8f8f9;
  font-family: Verdana, Arial, sans-serif;
  font-size: 10px;
}

.infoBoxNotice {
  background: #FF8E90;
}

.infoBoxNoticeContents {
  background: #FFE6E6;
  font-family: Verdana, Arial, sans-serif;
  font-size: 10px;
}

TD.infoBoxHeading {
  font-family: Verdana, Arial, sans-serif;
  font-size: 10px;
  font-weight: bold;
  background: #bbc3d3;
  color: #ffffff;
}

TD.infoBox, SPAN.infoBox {
  font-family: Verdana, Arial, sans-serif;
  font-size: 10px;
}
 
Back
Top Bottom