Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Is anyone using center shop?? that knows


julianpuje

Recommended Posts

Hi all

 

I am looking at rounding off the corners of my page, or should i say, how to round off the corners.

This must only be possible (i assume) by adding images, does anybody know how this can be done, or where in the center shop contribution to do it.

I've done a general search through the forums with no luck.

 

TIA

 

Julian

A little knowledge is dangerous, I SHOULD KNOW.

If Life Begins At 40, What ends????

Link to comment
Share on other sites

Hi all

 

I am looking at rounding off the corners of my page, or should i say, how to round off the corners.

This must only be possible (i assume) by adding images, does anybody know how this can be done, or where in the center shop contribution to do it.

I've done a general search through the forums with no luck.

 

TIA

 

Julian

 

 

yes, I am using the same scheme.

 

basically, adding the rounded images to the header and footer layers.

Treasurer MFC

Link to comment
Share on other sites

Thanks for the reply Amanda,

Can you show me an example of what you added and where, it'll take me forever to work it out, any help appreciated.

 

TIA

 

Julian

A little knowledge is dangerous, I SHOULD KNOW.

If Life Begins At 40, What ends????

Link to comment
Share on other sites

Thanks for the reply Amanda,

Can you show me an example of what you added and where, it'll take me forever to work it out, any help appreciated.

 

TIA

 

Julian

 

 

well,

 

I basically separated the center width control for the header, body and footer.

But that is not a problem, you can do the same in the normal configuration.

 

I use the rounded images in the header navigation bar. So I just added the following td tags in there:

 

<table border="0" align="center" width="<?php echo CENTER_HEADER_WIDTH; ?>" cellspacing="0" cellpadding="0">

<tr class="headerNavigation">

<td width="15"><img src="images/infobox/corner_left.gif"></td>

<td> normal header navigation information </td>

<td width="15"><img src="images/infobox/corner_right.gif"></td>

</tr>

</table>

 

 

and in the footer I do the same:

 

<table border="0" align="center" width="<?php echo CENTER_FOOTER_WIDTH; ?>" cellspacing="0" cellpadding="0">

<tr>

<td width="15"><img src="images/infobox/corner_left_f.gif"></td>

<td> normal footer </td>

<td width="15"><img src="images/infobox/corner_right_f.gif"></td>

</tr>

</table>

Treasurer MFC

Link to comment
Share on other sites

  • 11 months later...

Kind of an old topic.... but it is true to what my question is about and the only thing a seached pulled up.

 

I'm trying to add rounded corners but I can't seem to identify the right place to but the code for the rounded corner images...

 

Here is center_shop part of my header:

///////////////////	
///////////////////		
// [0001] BOF: WebMakers.com Added: Center Shop
// This goes before any other table of the shop
//
// Is center Shop ON/OFF ?
///////////////////

if ( CENTER_SHOP_ON == 'on' ) {

///////////////////	  
// [0001] Background Color ON/OFF and CellPadding for around the shop?
///////////////////

  if ( CENTER_SHOP_BACKGROUND_ON == 'on' ) {
?>
<table width="100%" cellpadding="<?php echo CENTER_SHOP_PADDING; ?>" cellspacing="0" border="0" bgcolor="<?php echo CENTER_SHOP_BACKGROUND_COLOR_OUT; ?>">
  <tr><td>
<?php
  }


///////////////////	
// [0001] Shop Width Size and Shop Background Color
///////////////////
?>
<table width="<?php echo CENTER_SHOP_WIDTH; ?>" align="center" BGCOLOR="<?php echo CENTER_SHOP_BACKGROUND_COLOR; ?>" BORDER="<?php echo CENTER_SHOP_BORDER; ?>" bordercolor="<?php echo CENTER_SHOP_BORDERCOLOR; ?>" CELLSPACING="<?php echo CENTER_SHOP_CELLSPACING; ?>" CELLPADDING="<?php echo CENTER_SHOP_CELLPADDING; ?>" >
  <tr><td BGColor="FFFFFF">
<?php

///////////////////
// [0001] The rest of this <td> statement is located at the end of footer.php
///////////////////
}
?>

 

Here is center_shop part of my footer:

<?php
///////////////////
// [0001] WebMakers.com Added: Center Shop
// This goes at the very end of the footer after all the tables
///////////////////

 if ( CENTER_SHOP_ON == 'on' ) {

///////////////////
// [0001] close table used to center
///////////////////
?>
  </td></tr>
</table>
<?php
if ( CENTER_SHOP_BACKGROUND_ON == 'on' ) {

///////////////////
// [0001] Add color to bottom of screen for large displays - needed especially on notebooks that run at 1600x1200
// close table used for outer bgcolor around the shop
///////////////////
?>

<!-- deleting the Spacer in the footer without the default background-color -->
 <!--  </td></tr>
  <tr><td height="150"> </td></tr>
</table> -->

<?php
}
 }
///////////////////
// [0001] EOF: WebMakers.com Added: Center Shop
///////////////////
///////////////////
?>

 

Thanks in advance for any ideas.

 

Nate

Link to comment
Share on other sites

if you used Vgers fixed width with css this would be easier--then you could do it by overwriting the little round corners that come with the basic install--maybe you can still do it this way? Good luck

"I must admit that I personally measure success in terms of the contributions an individual makes to her or his fellow human beings."

---Margaret Mead---

 

"The answer is never the answer. What's really interesting is the mystery. If you seek the mystery instead of the answer, you'll always be seeking. I've never seen anybody really find the answer -- they think they have, so they stop thinking. But the job is to seek mystery, evoke mystery, plant a garden in which strange plants grow and mysteries bloom. The need for mystery is greater than the need for an answer.

--Ken Kesey"

Link to comment
Share on other sites

if you used Vgers fixed width with css this would be easier--then you could do it by overwriting the little round corners that come with the basic install--maybe you can still do it this way? Good luck

 

I gave this a try too... http://www.oscommerce.com/community/contributions,2710

 

Is that the one you are talking about? or no? .... reason being is that I installed it and the corners of the infoboxes are not there..

 

Any ideas would be of great help.

 

Nate

Link to comment
Share on other sites

yes this is Vgers contrib--all you need to do is make some clear gifs that are 11x14px and put them in corner_right, corner_left_right etc...

let me know if you need more advice--it is really easy to do

"I must admit that I personally measure success in terms of the contributions an individual makes to her or his fellow human beings."

---Margaret Mead---

 

"The answer is never the answer. What's really interesting is the mystery. If you seek the mystery instead of the answer, you'll always be seeking. I've never seen anybody really find the answer -- they think they have, so they stop thinking. But the job is to seek mystery, evoke mystery, plant a garden in which strange plants grow and mysteries bloom. The need for mystery is greater than the need for an answer.

--Ken Kesey"

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...