osCommerce and osCMax shopping cart software forums

Shopping Cart Software

osCommerce with teeth!

 

How do you Remove Blue Columns???

This is a discussion on How do you Remove Blue Columns??? within the osCMax v1.7 Discussion forums, part of the osCMax v1.7 Forums category; How do you go about completely removing the blue columns that go down the right and left side of MS2-MAX ...


Go Back   osCommerce and osCMax shopping cart software forums > osCMax v1.7 Forums > osCMax v1.7 Discussion

Register FAQ Members List Calendar Mark Forums Read


Free community membership! Fast easy FREE membership
Closed Thread

 

LinkBack Thread Tools
  #1  
Old 01-15-2004, 12:07 AM
New Member
 
Join Date: May 2003
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
cxm322
Default How do you Remove Blue Columns???

How do you go about completely removing the blue columns that go down the right and left side of MS2-MAX stores behind the boxes?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #2  
Old 01-15-2004, 09:32 AM
michael_s's Avatar
osCMax Developer

 
Join Date: Jul 2002
Location: Phoenix, AZ
Posts: 10,330
Thanks: 68
Thanked 322 Times in 305 Posts
Rep Power: 10
michael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond repute
Default

Edit main_page.tpl.php. Find the left navigation and right navigation sections and delete them.
__________________
Michael Sasek
osCMax Developer


  • osCMax Templates - Hundreds of premium quality templates. New designs every month!

  • xShop for osCMax - Windows Based osCMax administration. Improved workflow, security, speed and convenience.

  • osCMax Hosting - From basic hosting to High Availability, Load Balanced arrays, the most experienced osCMax host.

  • osCMax Template Tutorial - Learn how to make your own custom templates and how to use the powerful features of the osCMax template system.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #3  
Old 01-15-2004, 10:10 AM
New Member
 
Join Date: May 2003
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
cxm322
Default

OK.

I removed...

Code:
<!-- left_navigation //-->
<?php require(DIR_WS_INCLUDES . 'column_left.php'); ?>
<!-- left_navigation_eof //-->
and

Code:
<!-- right_navigation //-->
<?php require(DIR_WS_INCLUDES . 'column_right.php'); ?>
<!-- right_navigation_eof //-->
This does not remove the blue columns behind the boxes but rather the boxes themselves. The blue columns remain.

Also, I noticed a reference to both images/OSCMAX_bc_right.gif and images/OSCMAX_bc_right.gif. However, I have not even bothered to try anything with these files as when I went to those directories I found that no such GIFs exist under those names.

Any other solutions???
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #4  
Old 01-15-2004, 02:54 PM
michael_s's Avatar
osCMax Developer

 
Join Date: Jul 2002
Location: Phoenix, AZ
Posts: 10,330
Thanks: 68
Thanked 322 Times in 305 Posts
Rep Power: 10
michael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond repute
Default

Ah, I misread your problem... you just want to remove the image, not the actual columns...

Easy, remove the image 'images/OSCMAX_box_bg.jpg' from line 44:

Code:
<table background="images/OSCMAX_box_bg.jpg" border="0" width="100%" cellspacing="0" cellpadding="2">
__________________
Michael Sasek
osCMax Developer


  • osCMax Templates - Hundreds of premium quality templates. New designs every month!

  • xShop for osCMax - Windows Based osCMax administration. Improved workflow, security, speed and convenience.

  • osCMax Hosting - From basic hosting to High Availability, Load Balanced arrays, the most experienced osCMax host.

  • osCMax Template Tutorial - Learn how to make your own custom templates and how to use the powerful features of the osCMax template system.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #5  
Old 01-15-2004, 05:31 PM
Anonymous
Guest
 
Posts: n/a
Default

OK. THat certainly did work but it caused alot of alignment problems.

SO, to those of you who want to remove the blue columns, here is what you have to do...

Keep in mind that the blue colums and the picture in the background of the main text area are all one picture file which is OSCMAX_box_bg.jpg

You cannot remove that picture file completely without messing up the alignments of alot of parts of your store. So instead, what you must do is change OSCMAX_box_bg.jpg to a transparent GIF file. The way I did it was I opened up OSCMAX_box_bg.jpg in MS Paint.

-I made the whole picture white.

-Then I saved it as GIF file.

-Then I opened the picture file I just made OSCMAX_box_bg.gif into another picture editor that allowed me to make the whole graphic transparaent.

-Then, I uploaded that new transparent OSCMAX_box_bg.gif file into my /catalo/images folder.

-Then I went into my /catalog/images/main_page.tpl.php file and changed the following code..


Code:
<table background="images/OSCMAX_box_bg.jpg" border="0" width="100%" cellspacing="0" cellpadding="2">
to...

Code:
<table background="images/OSCMAX_box_bg.gif" border="0" width="100%" cellspacing="0" cellpadding="2">
as you can see, the only change in the code is the file extention of the graphic from .jpg to .gif.

That's it!!! The colunms and main text area background graphic is still there so you store is all aligned properly but you just can't see them so it looks like they are not there at all..which was exactly what I wanted.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #6  
Old 01-16-2004, 04:44 AM
New Member
 
Join Date: May 2003
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
cxm322
Default

SOrry. That was me who posted th last post. Everytime I come to this forum I have to re-log in. This is the only forum it happens with. If I don;t log in, my posts are tagged as "guest".
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #7  
Old 01-16-2004, 06:41 AM
jpf's Avatar
jpf jpf is offline
Moderator

 
Join Date: Sep 2003
Location: Manitoba, Canada
Posts: 1,568
Thanks: 1
Thanked 84 Times in 71 Posts
Rep Power: 10
jpf is a glorious beacon of lightjpf is a glorious beacon of lightjpf is a glorious beacon of lightjpf is a glorious beacon of lightjpf is a glorious beacon of light
Default

Me too.
__________________
JPF - osCMax Fourm Moderator
Try out our osCMax at: Live Catalog Demo
Limited access Admin: Live Admin Demo
Feel free to add products they way you want and then purchase them -=+=- Sorry nothing will be billed or shipped!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #8  
Old 01-16-2004, 08:04 AM
michael_s's Avatar
osCMax Developer

 
Join Date: Jul 2002
Location: Phoenix, AZ
Posts: 10,330
Thanks: 68
Thanked 322 Times in 305 Posts
Rep Power: 10
michael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond repute
Default

cxm322, I can remove the images without any alignment problems, so you are doing something else. You can see a sample here:

http://aabox.com/1-5-5/catalog/index.php

The only thing I changed was to remove the image name from the tag. It causes no alignment problems anywhere in the site. I think you are making it more complex than it is.

The background image has nothing to do with the width or alignment of the column. It is a background only.

Regarding the login trouble, if you make your favorite/bookmark for http://oscdox.com and always return to that url, your cookie should work. The cookies are set for this domain only. If you go to http://www.oscdox.com, your cookie will not work and you will have to re-login.

Also, when you login, make sure you click the 'Remember me' checkbox, or the cookie will expire.

I always stay logged in and have not had to re-login in over 6 months....
__________________
Michael Sasek
osCMax Developer


  • osCMax Templates - Hundreds of premium quality templates. New designs every month!

  • xShop for osCMax - Windows Based osCMax administration. Improved workflow, security, speed and convenience.

  • osCMax Hosting - From basic hosting to High Availability, Load Balanced arrays, the most experienced osCMax host.

  • osCMax Template Tutorial - Learn how to make your own custom templates and how to use the powerful features of the osCMax template system.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #9  
Old 01-18-2004, 11:55 AM
New Member
 
Join Date: May 2003
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
cxm322
Default

Quote:
Originally Posted by msasek
cxm322, I can remove the images without any alignment problems, so you are doing something else. You can see a sample here:

http://aabox.com/1-5-5/catalog/index.php

The only thing I changed was to remove the image name from the tag. It causes no alignment problems anywhere in the site. I think you are making it more complex than it is.

The background image has nothing to do with the width or alignment of the column. It is a background only.
Sorry, I did nothing else to cause the misalignment. When I remove the columns I geta misaligned store. But I have fixed the problem as outlined above. If anyone else has the same problem alignment problem when removing columns, see my solution above.

You just keep the columns there but basically make the invisible.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #10  
Old 01-18-2004, 01:00 PM
michael_s's Avatar
osCMax Developer

 
Join Date: Jul 2002
Location: Phoenix, AZ
Posts: 10,330
Thanks: 68
Thanked 322 Times in 305 Posts
Rep Power: 10
michael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond repute
Default

Quote:
Sorry, I did nothing else to cause the misalignment. When I remove the columns I geta misaligned store.
If you removed columns, you already did more than my suggestion. All you need to do is remove the background image. Simply removing the background images and leaving the columns in place makes all the rest of your work unneccessary.
__________________
Michael Sasek
osCMax Developer


  • osCMax Templates - Hundreds of premium quality templates. New designs every month!

  • xShop for osCMax - Windows Based osCMax administration. Improved workflow, security, speed and convenience.

  • osCMax Hosting - From basic hosting to High Availability, Load Balanced arrays, the most experienced osCMax host.

  • osCMax Template Tutorial - Learn how to make your own custom templates and how to use the powerful features of the osCMax template system.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Closed Thread

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads

Thread Thread Starter Forum Replies Last Post
Transparent Background PNG logo showing light blue color? cacooke osCMax v2 Customization/Mods 0 10-10-2005 05:41 AM
Product Listing 2 columns and 3 rows joeyliu osCMax v1.7 Discussion 3 03-16-2005 05:06 PM
How to change the title blue bar mgl8888 osCommerce 2.2 Modification Help 3 03-24-2004 04:52 PM
adding columns to RHS, LHS or center coloumn starchild osCMax v1.7 Discussion 2 12-19-2003 07:51 PM
Background colour in columns only adder667 osCommerce 2.2 Modification Help 4 04-14-2003 01:02 AM


All times are GMT -8. The time now is 02:50 PM.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO
http://www.oscmax.com/forums/
Copyright 2008 osCMax