Re: Apple Zen Template Support Thread
Quote:
Originally Posted by
nrupesh
Hi again... Most of the issues sorted out and I got a few more tweaks done :)
Was wondering how I can get the shadows to the left of the sideboxes... something like
http://www.ejpshop.com/shop/index.php ... couldnt figure out!
Thanks again
Nrupesh
Looks like they added that shadow into the includes/templates/apple_zen/images/content_bg.gif
Re: Apple Zen Template Support Thread
I incorrectly had the "sidebox_sort_order" instead of the "header_sort_order".[/QUOTE]
Thanks. That did the trick:clap:
Re: Apple Zen Template Support Thread
I tried that, didnt work... I also saw the content_bg.gif and its plain white without any shadow. Any other clues that might help? Thanks a lot!
Nrupesh
Re: Apple Zen Template Support Thread
My site looks fine in IE but in Firefox all of my content is set completely off the page to the right. The only thing that shows on without scrolling is the header and the logo. Any ideas?
Re: Apple Zen Template Support Thread
Hi again... I tried to change some links in the dropdown, I figured most of its working and adding links.. only thing I cant figure out is that if I add a static link as the main button then its not showing as link and different color/alignment, I guess I have to apply some class to that li?
Thanks!
Re: Apple Zen Template Support Thread
Quote:
Originally Posted by
nrupesh
Hi again... I tried to change some links in the dropdown, I figured most of its working and adding links.. only thing I cant figure out is that if I add a static link as the main button then its not showing as link and different color/alignment, I guess I have to apply some class to that li?
Thanks!
Nevermind I spent a couple of hours and figured it out!! :D Feels good to get things done by myself lol
Still trying the Shadow issue, not a priority though.
Re: Apple Zen Template Support Thread
Quote:
Originally Posted by
nrupesh
I tried that, didnt work... I also saw the content_bg.gif and its plain white without any shadow. Any other clues that might help? Thanks a lot!
Nrupesh
Nope, look again, on the site that you showed me, their content_bg.gif has a shadow that they added. That is how they did it.
Re: Apple Zen Template Support Thread
Quote:
Originally Posted by
helpme
My site looks fine in IE but in Firefox all of my content is set completely off the page to the right. The only thing that shows on without scrolling is the header and the logo. Any ideas?
It looks like perhaps you recently updated the template, but didn't update your css with the new updates. You have the clearfix tags in the html of the site, but you don't have the clearfix css in the stylesheet.
Add this to your stylesheet:
Code:
.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.clearfix {display: inline-block;}
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
But you also have an error in your html. Your headerWrapper div is closing too early. Open up includes/templates/YOUR_TEMPLATE/common/tpl_header.php, and remove the </div> that is right before this:
Code:
<div class="clearBoth"></div>
<!--eof-navigation display-->
and move it to the end of the file. I think that will fix the issue.
Re: Apple Zen Template Support Thread
Quote:
Originally Posted by
jettrue
It looks like perhaps you recently updated the template, but didn't update your css with the new updates. You have the clearfix tags in the html of the site, but you don't have the clearfix css in the stylesheet.
Add this to your stylesheet:
Code:
.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.clearfix {display: inline-block;}
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
But you also have an error in your html. Your headerWrapper div is closing too early. Open up includes/templates/YOUR_TEMPLATE/common/tpl_header.php, and remove the </div> that is right before this:
Code:
<div class="clearBoth"></div>
<!--eof-navigation display-->
and move it to the end of the file. I think that will fix the issue.
Thanks for your help Jade, I change the stylesheet.css file as you said however I still have the problem in Firefox? Any other idea, I did learn that you can't save changed css files so I have taken all of those off.
And I also fixed the haderWrapper.
Thanks for your help!