Re: Ocean Front Template Support Thread
Hi Clyde,
I am still having some css issues mainly caused by by lack of understanding,
Using FF3 when you go to http://www.thepatchshop.com.au all is fine, then go to Contact Us or Login and the bottom boxes are cut off on the left border.
Using IE, what a mess, so does IE use instruction from both stylesheet.css and iestylesheet.css
I have all manner of combination's to no avail.
Any assistance would be appreciated
Re: Ocean Front Template Support Thread
FireFox3? Isn't that still BETA?
Re: Ocean Front Template Support Thread
Quote:
Originally Posted by
Kim
FireFox3? Isn't that still BETA?
No it was released on the 17th.
Re: Ocean Front Template Support Thread
Quote:
Originally Posted by
RKB
Hi Clyde,
I am still having some css issues mainly caused by by lack of understanding,
Using FF3 when you go to
http://www.thepatchshop.com.au all is fine, then go to Contact Us or Login and the bottom boxes are cut off on the left border.
Using IE, what a mess, so does IE use instruction from both stylesheet.css and iestylesheet.css
I have all manner of combination's to no avail.
Any assistance would be appreciated
Try removing the highlighted portion of this declaration in the stylesheet.css
The width of the column wrapper is already defined in admin -> configuration -> layout settings; you don't need to set it in the stylesheet.
#navColumnOneWrapper {
margin-left: 10px;
margin-right: 0px;
/*width: 150px;*/
}
The iestylesheet.css only uses settings particular to IE and anything else comes from the the main stylesheet.css.
Re: Ocean Front Template Support Thread
Quote:
Originally Posted by
Kim
FireFox3? Isn't that still BETA?
No, It's fully released
how do i remove space above header?
Hi every one, Ive found most solutions in the forum but Im a bit stuck with the space above the header especially in IE the site I am working on is this site
http://www.rxalternative.net/rxalternative/ and Im using ocean front template and version v1.3.8 of zen cart, can any one help??
Re: Ocean Front Template Support Thread
Quote:
Originally Posted by
bishop999
Hi every one, Ive found most solutions in the forum but Im a bit stuck with the space above the header especially in IE the site I am working on is this site
http://www.rxalternative.net/rxalternative/ and Im using ocean front template and version v1.3.8 of zen cart, can any one help??
One thing I did notice is that you are not using the stylesheet.css that was included with the template. So I can't pin point exactly where this problem may lie.
Re: Ocean Front Template Support Thread
Quote:
Originally Posted by
clydejones
One thing I did notice is that you are not using the stylesheet.css that was included with the template. So I can't pin point exactly where this problem may lie.
Hi thanks for replying, would it be ok to add the style sheet here? it was the one that came with the latest version of the template, Ive modified it a little to change font colors and header size.
the issue is the header isnt going to absolute top, the search header went to absolute top but I turned that off in the layout boxes control
Re: Ocean Front Template Support Thread
Quote:
Originally Posted by
bishop999
Hi thanks for replying, would it be ok to add the style sheet here? it was the one that came with the latest version of the template, Ive modified it a little to change font colors and header size.
the issue is the header isnt going to absolute top, the search header went to absolute top but I turned that off in the layout boxes control
You turned off the search box in the admin but now you are displaying an empty div.
to correct this:
open includes/templates/ocean_front/common/tpl_header.php
find the following line of code (at around line 45)
PHP Code:
<div id="navMainSearch"><?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?></div>
and replace that line with the following line of code
PHP Code:
<!-- <div id="navMainSearch"><?php // require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?></div> -->
Save the file and upload to your server
Re: Ocean Front Template Support Thread
Quote:
Originally Posted by
clydejones
You turned off the search box in the admin but now you are displaying an empty div.
to correct this:
open includes/templates/ocean_front/common/tpl_header.php
find the following line of code (at around line 45)
PHP Code:
<div id="navMainSearch"><?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?></div>
and replace that line with the following line of code
PHP Code:
<!-- <div id="navMainSearch"><?php // require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?></div> -->
Save the file and upload to your server
thank you for your help, I got it working using alternate header (user contribution), but now the search div is making a space below header so Ill try your fix and get back to you, thanks again.