Thanks for the explanation.
Is it possible to download this version somewhere?
Norman in 't Veldt
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
[How to] BTW + Verzend + betaal setup.
Attachments
All-CSS-NoTab v1.4.0
Thanks!
How do I add or remove an item from the menu-bar?
In Dutch the word "Specials" is made out of 2 words "Speciale aanbiedingen" en thus the menu-bar goes whoes.
As the Shopping cart is already in the right colum I want to remove it from the menu-bar.
Edit: I found it.
Norman in 't Veldt
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
[How to] BTW + Verzend + betaal setup.
I've tried to use the one from the header but that generates an undefined error.
Norman in 't Veldt
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
[How to] BTW + Verzend + betaal setup.
Add a relative link to the heading title to the cart at;
catalog/view/theme/All-CSS-NoTab/template/module/cart.tpl
Or
Modify the cart.php at catalog/controller/module.
Find:
Code: Select all
$this->data['heading_title'] = $this->language->get('heading_title');
Code: Select all
$this->data['text_cart'] = $this->language->get('text_cart');
$this->data['heading_title'] = $this->language->get('heading_title');
$this->data['cart'] = $this->url->http('checkout/cart');

I have tried this but nothing changes.CodeBits wrote:Modify the cart.php at catalog/controller/module.
Find:and change to:Code: Select all
$this->data['heading_title'] = $this->language->get('heading_title');
Code: Select all
$this->data['text_cart'] = $this->language->get('text_cart'); $this->data['heading_title'] = $this->language->get('heading_title'); $this->data['cart'] = $this->url->http('checkout/cart');
Have a look: Here.
Norman in 't Veldt
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
[How to] BTW + Verzend + betaal setup.
Like this...
Code: Select all
<div class="top"><img src="catalog/view/theme/All-CSS-NoTab/image/basket.png" alt="" /> <a href="<?php echo $cart; ?>"><?php echo $heading_title; ?></a></div>
Thanks!
Norman in 't Veldt
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
[How to] BTW + Verzend + betaal setup.
I love this layout! I am going to try it out. thank you for all the hard work.CodeBits wrote:You need to add the href atribute to the cart.tpl in catalog/view/theme/All-CSS-NoTab/template/module.
Like this...
Look Here I temporarily made the change to the ALL CSS Demo.Code: Select all
<div class="top"><img src="catalog/view/theme/All-CSS-NoTab/image/basket.png" alt="" /> <a href="<?php echo $cart; ?>"><?php echo $heading_title; ?></a></div>
I'm new here and it's my first time using OC too but I do have some questions. I do have basic knowledge about HTML but that's all, the rest are just following instructions.
1. How do I remove the banner on the header?
2. HOw to remove the images on the sidebar modules like the categories, information, cart, and stuff?
3. And where do I edit the "about us", "Terms and conditions", and "Privacy Policy" pages?
Thank you so much and any help would be really, really appreciated.
1. remove this line in your stylesheet.css file [ catalog/view/theme/All-CSS-NoTab/stylesheet ]ssc wrote:1. How do I remove the banner on the header?
2. HOw to remove the images on the sidebar modules like the categories, information, cart, and stuff?
3. And where do I edit the "about us", "Terms and conditions", and "Privacy Policy" pages?
#header .div1{
background-color: #5081B3;
Code: Select all
background: url('../image/demo-header.jpg') no-repeat;
2. remove the image code from each module [ catalog/view/theme/All-CSS-NoTab/template/module ]
<div class="top">
Code: Select all
<img src="catalog/view/theme/All-CSS-NoTab/image/bestsellers.png" alt="" />
3.Go to Admin CP, click on menu item Catalog; Information, on page select a check box by the file you want to edit, click edit.
Thank you so much. I was able to delete the demo image on div1 but how can i change the header background and how to center the logo? thanks again.CodeBits wrote:1. remove this line in your stylesheet.css file [ catalog/view/theme/All-CSS-NoTab/stylesheet ]ssc wrote:1. How do I remove the banner on the header?
2. HOw to remove the images on the sidebar modules like the categories, information, cart, and stuff?
3. And where do I edit the "about us", "Terms and conditions", and "Privacy Policy" pages?
#header .div1{
background-color: #5081B3;}Code: Select all
background: url('../image/demo-header.jpg') no-repeat;
2. remove the image code from each module [ catalog/view/theme/All-CSS-NoTab/template/module ]
<div class="top"><?php echo $heading_title; ?></div>Code: Select all
<img src="catalog/view/theme/All-CSS-NoTab/image/bestsellers.png" alt="" />
3.Go to Admin CP, click on menu item Catalog; Information, on page select a check box by the file you want to edit, click edit.
EDIT: I figured it out.
1. WHy is it that when I'm logged in, the special offers menu is not in the blue header box, it's under it. what should i do to fix it?
2. How do I center the footer and how to put them in one like
instead of:
Powered By: OpenCart
Currency COllector's Corner ©2010
put them in one line like:
Currency Collector's Corner ©2010 Powered By: OpenCart
3. Please have a look at my store as I have a problem with the logo too: http://www.currencycollectorscorner.com
How do I eliminate the top and bottom spaces of the header and how do I centere it?
4. How do I edit the "Welcome to your store" text in the homepage?
Sorry if I have so many questions but any help would be really, really appreciated.
Thank you so much for any help
Leave left at 0 for centering, change top "em" set top position
Code: Select all
#header .div2 {
position: relative; top: 1em; left: 0;
text-align: center; /* centers the logo in its div */
}
Code: Select all
#header .div4 {
margin-top: 1em;
clear: both;
}
You have one table cell, you don't need a table for this, and you forgot a closing </tr> and </div>. You have also placed the "div1" class outside it's parent id "footer". There is no "footer" or "foot_links" in the distribution of our All CSS, maybe you have intentions of adding them, but I see no reason to. I'll provide you code below to produce the results you want without a table.
In your footer.tpl file follow below.
CHANGE THIS CODE:
Code: Select all
<div id="footer">
<div class="footer">
<table width="100%" cellpadding="3px" cellspacing="3px"><tr><td align="left" class="foot_left">
<td align="center" class="foot_links">
<a href="http://www.currencycollectorscorner.com/index.php?route=information/information&information_id=4">About Us</a> |
<a href="http://www.currencycollectorscorner.com/index.php?route=information/information&information_id=3">Privacy Policy</a> |
<a href="http://www.currencycollectorscorner.com/index.php?route=information/information&information_id=5">Terms & Conditions</a> |
<a href="http://www.currencycollectorscorner.com/index.php?route=information/contact">Contact Us</a> |
<a href="http://www.currencycollectorscorner.com/index.php?route=information/sitemap">Site Map</a></td>
</table>
</div>
<div class="div1">Powered By <a href="http://www.opencart.com">OpenCart</a><br /> Currency Collector's Corner © 2010</div>
Code: Select all
<div id="footer">
<div class="div1">
<a href="http://www.currencycollectorscorner.com/index.php?route=information/information&information_id=4">About Us</a> |
<a href="http://www.currencycollectorscorner.com/index.php?route=information/information&information_id=3">Privacy Policy</a> |
<a href="http://www.currencycollectorscorner.com/index.php?route=information/information&information_id=5">Terms & Conditions</a> |
<a href="http://www.currencycollectorscorner.com/index.php?route=information/contact">Contact Us</a> |
<a href="http://www.currencycollectorscorner.com/index.php?route=information/sitemap">Site Map</a>
</div>
<div class="div1">Powered By <a href="http://www.opencart.com">OpenCart</a><br /> Currency Collector's Corner © 2010</div>
</div>
CHANGE THIS CODE:
Code: Select all
#footer .div1 {
float: left;
text-align: left;
}
#footer .div2 {
float: right;
text-align: right;
}
Code: Select all
#footer .div1 {
margin-bottom: 1em;
/*float: left;*/
text-align: center;
}
#footer .div2 {
/*float: right;*/
text-align: center;
}
CHANGE TO CODE:
Code: Select all
$_['text_powered_by'] = 'Powered By <a href="http://www.opencart.com">OpenCart</a><br /> %s © %s';
Code: Select all
$_['text_powered_by'] = '%s © %s | Powered By <a href="http://www.opencart.com">OpenCart</a>';
Go to Admin; System tab/ Settings/scroll to bottom of page and you'll find your page editor for the Home Page where you can edit and or add text.ssc wrote:Wow, you are amazing. Thanks alot.
One more thing and I'm done...where do I edit the "Welcome to your Store" text?

I've made a new set of graphics for this template to turn it into a sweetshop - all was going well untill I checked it in ie6. Sadly the header is all messed up in ie6 - I uploaded a virgin copy of the theme just to make sure it was nothing I'd done, but it was the same.
Unfortunately I can't possibly put up an ecommerce site that doesn't work with ie6, so I was wondering if someone could spare a few mins to help me hack it up to work. I know there's a bit of a downer on ie6, but the fact is there's still a lot of people using it so I have no choice but to support it.
Any help would be greatly appreciated - please see example for, well, an example of what it looks like in ie6.
Cloe
Attachments
Example - example2.gif (15.98 KiB) Viewed 7657 times
There are other options but these would be the easy one to try first.
In your CSS file find to adjust the width.
Code: Select all
#header .div5 {
float: left;
width: 570px;
height: 38px;
margin: 0 0 0 1em;
border: solid 0px red;
}
Just wanted to say thanks for your response - my net connection went down and has literally just come back on so I didn't get a chance to try it yet (this was the first place I came lol), but I will vsoon.
Thanks again
Cloe
I liked the simplicity of your No-Tabs design so I modified it a bit on my install of 1.4.0
Now Daniel has released 1.4.6 it is no longer working correctly for me on a fresh install of this latest version.
I get an error in several places in the shopping cart page and also in the order confirmation emails.
On the cart page it says:
Notice: Undefined variable: success in ..../catalog/view/theme/All-CSS-NoTab/template/checkout/cart.tpl on line 14
On that same page the discount code box says the following:
Notice: Undefined variable: text_coupon in ..../catalog/view/theme/All-CSS-NoTab/template/checkout/cart.tpl on line 68
(I've installed 1.4.6 at wc2.org.uk to test it)
Thanks in advance for any suggestions or help!
Kind regards
Rachel

Users browsing this forum: No registered users and 5 guests