i'm using 1.3.8.
i just want to add "coming soon" or something to a SINGLE product page. it's been awhile since i've worked with ZC much... (i've searched)
thanks!
i'm using 1.3.8.
i just want to add "coming soon" or something to a SINGLE product page. it's been awhile since i've worked with ZC much... (i've searched)
thanks!
For a single product page, the easiest way would be to add the text to the end of the description, wrapped in HTML tags so it can be styled appropriately.
Texttexttext... <span class="comingSoonBlurb">Coming Soon!</span>
Add to your stylesheet
Adjust properties and position as desired.Code:.comingSoonBlurb { font-size: 2.5em; color: #ff3366; position: absolute; top: 123px; left: 456px; }
good enough - i just didn't know if there was an alternate way to edit a single product page, say using php if()...
thanks