Re: Ocean Front Template Support Thread
I love the look of this template.
I decided to implement it on my site, www.paperthreads.com/store
It's all looking great, but I have a slight problem.
When you mouse over the "featured products" or anything like that, the whole page drops down a couple of inches. It does this on the subcategory pages as well.
any advice?
Re: Ocean Front Template Support Thread
Quote:
Originally Posted by
paperthreads
I love the look of this template.
I decided to implement it on my site,
www.paperthreads.com/store
It's all looking great, but I have a slight problem.
When you mouse over the "featured products" or anything like that, the whole page drops down a couple of inches. It does this on the subcategory pages as well.
any advice?
make sure that the jscript_imagehover.js is included in
includes/templates/ocean_front/jscript
if the jscript folder is missing make sure to add it.
Hope that makes sense.
Re: Ocean Front Template Support Thread
Hi Clyde This template looks lovely - and at the risk of sounding stupid is it possible to have sideboxes on the right too?
Re: Ocean Front Template Support Thread
Quote:
Originally Posted by
kiamyka
Hi Clyde This template looks lovely - and at the risk of sounding stupid is it possible to have sideboxes on the right too?
It was designed as a fixed width 2 column design.
You'd have to adjust the width of the design to accommodate the the additional column and in doing that you'd have to re-do (create a new) center panel image to fit the new width that you set.
Re: Ocean Front Template Support Thread
Hi!
Just to add my two cents! I love this too and am using it for a new site that I am working on! The colors and design are so refreshing - makes ya feel good looking at it!
Thanks for the template!
Re: Ocean Front Template Support Thread
Quote:
Originally Posted by
clydejones
make sure that the jscript_imagehover.js is included in
includes/templates/ocean_front/jscript
if the jscript folder is missing make sure to add it.
Hope that makes sense.
I did this and still had problems - I solved it by adding
style_imagehover.css
to includes/templates/ocean_front/css/style_imagehover.css
Back to work - I 'm sure i will have more questions - :smile:
Re: Ocean Front Template Support Thread
Customization just starting on this lovely template.
How can I get a little padding on top of and below the logo.
Site is here: ---> http://casagrandeshops.com/
Also if I add a background what codes would I modify to make the center column and the page border transparent so the image would be seen? I have the image uploaded and the codes are in teh stylesheet, just commented out for now.
Re: Ocean Front Template Support Thread
Quote:
Originally Posted by
charmedbytina2
Customization just starting on this lovely template.
How can I get a little padding on top of and below the logo.
Site is here: --->
http://casagrandeshops.com/
Also if I add a background what codes would I modify to make the center column and the page border transparent so the image would be seen? I have the image uploaded and the codes are in teh stylesheet, just commented out for now.
The main background image is located in #mainWrapper and is 850px wide.
If you want an addition image in the "center column" make sure it is 620px wide and place it in the css declaration .centercolumn
If you're talking about adding a background image to the #logoWrapper, just replace the image that is already located in that declaration also change the background-color to transparent.
Re: Ocean Front Template Support Thread
Hiya Clyde
It's me again I am having a problem changing the header text
// added defines for header alt and text
define('HEADER_ALT_TEXT', 'Powered by Zen Cart :: The Art of E-Commerce [home link]');
define('HEADER_SALES_TEXT', 'Sales Message Goes Here<br />This text can be changed by<br />editing <code>includes/languages/english/ocean_front/header.php</code>');
define('HEADER_LOGO_WIDTH', '200px');
define('HEADER_LOGO_HEIGHT', '75px');
define('HEADER_LOGO_IMAGE', 'logo.gif');
What do I do with the text in red as above? When I exclude it I just get a blank site
Thanks x
Re: Ocean Front Template Support Thread
Quote:
Originally Posted by
kiamyka
Hiya Clyde
It's me again I am having a problem changing the header text
// added defines for header alt and text
define('HEADER_ALT_TEXT', 'Powered by Zen Cart :: The Art of E-Commerce [home link]');
define('HEADER_SALES_TEXT', 'Sales Message Goes Here<br />This text can be changed by<br />editing <code>includes/languages/english/ocean_front/header.php</code>');
define('HEADER_LOGO_WIDTH', '200px');
define('HEADER_LOGO_HEIGHT', '75px');
define('HEADER_LOGO_IMAGE', 'logo.gif');
What do I do with the text in red as above? When I exclude it I just get a blank site
Thanks x
define('HEADER_ALT_TEXT', 'Powered by Zen Cart :: The Art of E-Commerce [home link]');
define('HEADER_SALES_TEXT', 'Sales Message Goes Here<br />This text can be changed by<br />editing <code>includes/languages/english/ocean_front/header.php</code>');
You can edit them out and replace with your own text; just make sure to leave the single quote ('') marks in tact.
for example:
define('HEADER_ALT_TEXT', 'the name of your site');
define('HEADER_SALES_TEXT', '');
or
define('HEADER_SALES_TEXT', 'whatever text you want');