Post by jeeremie » Sat Jul 28, 2007 8:55 pm

Hello,

I am customizing Opencart but I have a problem. I added into stylesheet.css the following code:

Code: Select all

#product .a img {
  width: 250px;
  padding: 1px;
  background: #080808;
}
and in /plugin/product.tpl i need to change to be the full image instead. The current code is:

Code: Select all

<div id="product">
    <div class="a"><img src="<?php echo @$thumb; ?>" onclick="popup('<?php echo @$popup; ?>', '<?php echo $heading_title; ?>');" title="<?php echo $heading_title; ?>" alt="<?php echo $heading_title; ?>" /><br />
      <?php echo $text_enlarge; ?></div>
 ...
but i don't know what to write instead of . I tried with and but none are working.

So, to make things clear, what I want at the end is something like this:

Code: Select all

<div id="product">
    <div class="a"><img src="<?php echo @$image; ?>" title="<?php echo $heading_title; ?>" alt="<?php echo $heading_title; ?>" /><br /></div>
 ...
Can someone help me?

Thanks in advance.

Newbie

Posts

Joined
Sat Jul 28, 2007 8:46 pm


Post by Daniel » Sun Jul 29, 2007 2:17 am

try using $popup

OpenCart®
Project Owner & Developer.


User avatar
Administrator

Posts

Joined
Fri Nov 03, 2006 6:57 pm

Post by jeeremie » Sun Jul 29, 2007 7:18 pm

You are right. It is working. I should have thought about it before. Thanks a lot.

Newbie

Posts

Joined
Sat Jul 28, 2007 8:46 pm


Post by jeeremie » Sun Jul 29, 2007 7:28 pm

By the way, I thought I should give the the full code in case someone else needs it (/catalog/template/default/plugin/product.tpl):

Code: Select all

  <div id="product">

    <div class="a"><img src="<?php echo @$popup; ?>" title="<?php echo $heading_title; ?>" alt="<?php echo $heading_title; ?>" /><br /></div>

    <div class="breadcrumb">

...
... and the CSS (/catalog/template/default/stylesheet.css):

Code: Select all

#product .a img {
  width: 250px; /*image width*/
  height: auto;
  padding: 1px;
  padding: 7px;
  background: #333;
  border: #222 1px solid;
}
Hope it will be usefull to someone.

Newbie

Posts

Joined
Sat Jul 28, 2007 8:46 pm

Who is online

Users browsing this forum: No registered users and 3 guests