Post by i2Paq » Wed Jan 27, 2010 5:18 pm

OK, I see now.

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.


User avatar
Global Moderator

Posts

Joined
Mon Nov 09, 2009 7:00 pm
Location - Winkel - The Netherlands

Post by CodeBits » Thu Jan 28, 2010 12:28 am

You can download HERE in Contribution or below.

Cheers 8)

Attachments

All-CSS-NoTab v1.4.0


User avatar
Active Member

Posts

Joined
Fri Jun 05, 2009 3:16 am

Post by i2Paq » Thu Jan 28, 2010 7:08 pm

CodeBits wrote:You can download HERE in Contribution or below.

Cheers 8)
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.


User avatar
Global Moderator

Posts

Joined
Mon Nov 09, 2009 7:00 pm
Location - Winkel - The Netherlands

Post by i2Paq » Thu Jan 28, 2010 7:23 pm

Hmm, I want to have the Title of the Cart module to be clickable so when clicked it will go to the cart.

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.


User avatar
Global Moderator

Posts

Joined
Mon Nov 09, 2009 7:00 pm
Location - Winkel - The Netherlands

Post by CodeBits » Fri Jan 29, 2010 1:09 am

There's two ways to do this;
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');
and change to:

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');
8) either way will work

User avatar
Active Member

Posts

Joined
Fri Jun 05, 2009 3:16 am

Post by i2Paq » Fri Jan 29, 2010 2:45 am

CodeBits wrote:Modify the cart.php at catalog/controller/module.

Find:

Code: Select all

$this->data['heading_title'] = $this->language->get('heading_title');
and change to:

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.

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.


User avatar
Global Moderator

Posts

Joined
Mon Nov 09, 2009 7:00 pm
Location - Winkel - The Netherlands

Post by CodeBits » Fri Jan 29, 2010 4:41 am

You need to add the href atribute to the cart.tpl in catalog/view/theme/All-CSS-NoTab/template/module.

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>
Look Here I temporarily made the change to the ALL CSS Demo.

User avatar
Active Member

Posts

Joined
Fri Jun 05, 2009 3:16 am

Post by i2Paq » Fri Jan 29, 2010 5:21 am

Yep, that did the trick.

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.


User avatar
Global Moderator

Posts

Joined
Mon Nov 09, 2009 7:00 pm
Location - Winkel - The Netherlands

Post by Artlife » Sat Feb 20, 2010 9:46 am

CodeBits wrote:You need to add the href atribute to the cart.tpl in catalog/view/theme/All-CSS-NoTab/template/module.

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>
Look Here I temporarily made the change to the ALL CSS Demo.
I love this layout! I am going to try it out. thank you for all the hard work.

New member

Posts

Joined
Tue Feb 02, 2010 11:41 am

Post by ssc » Thu Feb 25, 2010 6:40 am

Hello, thank you for the template, i really like it. Finally found what I've been looking for, a template with no tabs.

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.

ssc
Newbie

Posts

Joined
Fri Feb 19, 2010 4:17 am

Post by CodeBits » Thu Feb 25, 2010 9:02 am

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?
1. remove this line in your stylesheet.css file [ catalog/view/theme/All-CSS-NoTab/stylesheet ]
#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="" />
<?php echo $heading_title; ?></div>

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.

User avatar
Active Member

Posts

Joined
Fri Jun 05, 2009 3:16 am

Post by ssc » Fri Feb 26, 2010 2:45 am

CodeBits wrote:
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?
1. remove this line in your stylesheet.css file [ catalog/view/theme/All-CSS-NoTab/stylesheet ]
#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="" />
<?php echo $heading_title; ?></div>

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.

EDIT: I figured it out.

ssc
Newbie

Posts

Joined
Fri Feb 19, 2010 4:17 am

Post by ssc » Sat Feb 27, 2010 5:55 pm

Hello, here I am with some questions again.

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

ssc
Newbie

Posts

Joined
Fri Feb 19, 2010 4:17 am

Post by CodeBits » Sun Feb 28, 2010 5:03 am

Logo position CSS file;
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 */
}
Change top "em" set top position

Code: Select all

#header .div4 {
	margin-top: 1em; 
	clear: both;
}
Footer position;
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>&nbsp;&nbsp;|&nbsp;
            <a href="http://www.currencycollectorscorner.com/index.php?route=information/information&information_id=3">Privacy Policy</a>&nbsp;&nbsp;|&nbsp;
            <a href="http://www.currencycollectorscorner.com/index.php?route=information/information&information_id=5">Terms & Conditions</a>&nbsp;&nbsp;|&nbsp;

      <a href="http://www.currencycollectorscorner.com/index.php?route=information/contact">Contact Us</a>&nbsp;&nbsp;|&nbsp;
      <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 &copy; 2010</div>
TO THIS CODE:

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>&nbsp;&nbsp;|&nbsp;
<a href="http://www.currencycollectorscorner.com/index.php?route=information/information&information_id=3">Privacy Policy</a>&nbsp;&nbsp;|&nbsp;
<a href="http://www.currencycollectorscorner.com/index.php?route=information/information&information_id=5">Terms & Conditions</a>&nbsp;&nbsp;|&nbsp;
<a href="http://www.currencycollectorscorner.com/index.php?route=information/contact">Contact Us</a>&nbsp;&nbsp;|&nbsp;
<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 &copy; 2010</div>
</div>
In your CSS make following code changes;

CHANGE THIS CODE:

Code: Select all

#footer .div1 {
	float: left;
	text-align: left;
}
#footer .div2 {
	float: right;
	text-align: right;
}
TO THIS CODE:

Code: Select all

#footer .div1 {
	margin-bottom: 1em;
	/*float: left;*/
	text-align: center;
}
#footer .div2 {
	/*float: right;*/
	text-align: center;
}
To re-order the copyright with powered by you need to modify the footer.php file in the catalog/language/english/common/ folder.

CHANGE TO CODE:

Code: Select all

$_['text_powered_by'] = 'Powered By <a href="http://www.opencart.com">OpenCart</a><br /> %s &copy; %s';
TO THIS CODE:

Code: Select all

$_['text_powered_by'] = '%s &copy; %s &nbsp;|&nbsp; Powered By <a href="http://www.opencart.com">OpenCart</a>';

User avatar
Active Member

Posts

Joined
Fri Jun 05, 2009 3:16 am

Post by ssc » Sun Feb 28, 2010 4:23 pm

Wow, you are amazing. Thanks alot.
One more thing and I'm done...where do I edit the "Welcome to your Store" text?

ssc
Newbie

Posts

Joined
Fri Feb 19, 2010 4:17 am

Post by CodeBits » Sun Feb 28, 2010 11:45 pm

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?
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.

8)

User avatar
Active Member

Posts

Joined
Fri Jun 05, 2009 3:16 am

Post by hillfish » Fri Mar 05, 2010 7:45 am

Hi all
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

example2.gif

Example - example2.gif (15.98 KiB) Viewed 7657 times


New member

Posts

Joined
Wed Mar 03, 2010 2:31 am

Post by CodeBits » Sat Mar 06, 2010 12:15 am

What's happening is IE6 of course isn't doing the job right. The div5 width needs to be narrowed. In your case possibly just removing the word Offers after Special could do it, or you may need to adjust the div it's self as well.
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;
}

User avatar
Active Member

Posts

Joined
Fri Jun 05, 2009 3:16 am

Post by hillfish » Mon Mar 08, 2010 9:34 am

Hi Codebits
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

New member

Posts

Joined
Wed Mar 03, 2010 2:31 am

Post by dragonfly » Tue Apr 06, 2010 4:19 am

Hi NWISG

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
:)

New member

Posts

Joined
Sat Jan 30, 2010 8:13 pm
Location - Wiltshire, UK
Who is online

Users browsing this forum: No registered users and 5 guests