Hi,
I can’t find it… where and How to change the "save up to 70%" image?
thanks.
14 answers
Hi,
I can’t find it… where and How to change the "save up to 70%" image?thanks.
If you can provide me with the url to the site you’re working on, I should be able to tell you exactly where you can find that image within your file structure.
Hi,
thanks for the quick answer. I know where is the image located… what I don’t know is where is the code that add the image located.
I would like to know where is the code so I will be able to "play" with it as I want.
link: http://www.tiwebmaster.net/shop
Here is a diagram of the block positions for JM Jasmine -- which also identifies the static block position for that image . . .
http://static.joomlart.com/ima…ock-layout.jpg
The JM front-page has 16 static blocks in the Theme:
- position-2
- position-3
- position-4
- position-5
- position-6
- position-7
- position-8
- position-9
- position-10
- position-11
- block -- twitter
- block-welcome
- block-contact
- brand_intro
- left-banner
To create these blocks, go to CMS > Static Block > then select the page that you would like it to display these block on (e.g: Home page) :http://static.joomlart.com/ima…block_menu.jpg
http://static.joomlart.com/ima…icBlocks_b.png
You can add a new block by clicking on the Add New Block button then input the block’s content as you prefer. For more details on how, take a look at the How to create New Static Block guide.
1.15. Left-Banner:
Backend settings as is on Demo
HTML Code:
Code:
<div class="block block-banner block-nopadding"> <div class="block-content"><img src="{{media url="wysiwyg/left-banner.jpg"}}" alt="" /> <div class="img-alt"><h4>Combos</h4><span>Staring at $80</span> </div> </div> </div>
Front-end Appearance
http://static.joomlart.com/ima…ftBanner_f.png
Hi,
thanks again but the Left-Banner contain only 1 image. what about the other image on top of it?
where is that block??? where is the block that say: "save up to 70%" ?
Hi,
thanks again but the Left-Banner contain only 1 image. what about the other image on top of it?
where is that block??? where is the block that say: "save up to 70%" ?
Did you check all of your static blocks within your site administration?
yes… it’s not there…
that’s right and also I tried to disabled it and still I got the 70% image…
Hi,
I think that you don’t understand me.
the left banner block is disable right now. but still… I can see the 70% image…
the left banner has nothing to do with that image.
check my site at: tiwebmaster.net/shop and see that the left banner block is not published…
Hi tiwebmaster,
it’s not a static block, you open the layout file app\design\frontend\default\jm_jasmine\layout\cata log.xml there you would see this defined block
HTML Code:
<reference name="left"> <block type="core/template" name="left.permanent.callout" template="callouts/left_col.phtml"> <action method="setImgSrc"><src>images/media/col_left_callout.jpg</src></action> <action method="setImgAlt" translate="alt" module="catalog"><alt>THE BIG BURGERS</alt></action> <action method="setLinkUrl"><url>about-magento-demo-store</url></action> </block> </reference>
these are defined for that image, you can try to change the sec, url, etc.. as you want.
thanks !
can I delete it and add another left-banner block instead?
also, the same for the the paypal image on the right side on any inside page such as that: http://tiwebmaster.net/shop/web-design-package.html
how can I add,edit,delete that image?
thanks !
Hi tiwebmaster,
You can change the value of images/media/col_left_callout.jpg to the location of your own image.
Regarding the paypal logo on the right, if you want to remove it you can open the layout file of app\design\frontend\default\jm_jasmine\layout\payp al.xml there you remove this tag
HTML Code:
<catalog_category_default> <update handle="SHORTCUT_popup" /> <reference name="right"> <block type="paypal/logo" name="paypal.partner.right.logo" template="paypal/partner/logo.phtml"/> </reference> </catalog_category_default>
I hope it helps !