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;
}
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>
...
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>
...
Thanks in advance.