Results 1 to 10 of 10

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

      
  1. #1
    New Member
    Join Date
    May 2003
    Posts
    24
    Rep Power
    0


    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?

  2. #2
    osCMax Developer

    michael_s's Avatar
    Join Date
    Jul 2002
    Location
    Phoenix, AZ
    Posts
    19,500
    Rep Power
    567


    Default

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


    osCmax installation service - Have our professionals install osCmax on your server - same day service!
    osCmax 2.0 User Manual - the must have beginners guide to osCmax v2.0

    Stay Up To Date with everything osCMax:
    Free osCMax Newsletters - Security notices, New Releases, osCMax News
    osCMax on Twitter - Up to the minute info as it happens. Know it first.

    osCmax Documentation

  3. #3
    New Member
    Join Date
    May 2003
    Posts
    24
    Rep Power
    0


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

  4. #4
    osCMax Developer

    michael_s's Avatar
    Join Date
    Jul 2002
    Location
    Phoenix, AZ
    Posts
    19,500
    Rep Power
    567


    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 installation service - Have our professionals install osCmax on your server - same day service!
    osCmax 2.0 User Manual - the must have beginners guide to osCmax v2.0

    Stay Up To Date with everything osCMax:
    Free osCMax Newsletters - Security notices, New Releases, osCMax News
    osCMax on Twitter - Up to the minute info as it happens. Know it first.

    osCmax Documentation

  5. #5
    Anonymous
    Guest


    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.

  6. #6
    New Member
    Join Date
    May 2003
    Posts
    24
    Rep Power
    0


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

  7. #7
    jpf
    jpf is offline
    osCMax Testing Team
    jpf's Avatar
    Join Date
    Sep 2003
    Location
    Manitoba, Canada
    Posts
    2,688
    Rep Power
    22


    Default

    Me too.
    JPF - osCMax Fourm Moderator - To contact, post on the forum or click here
    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!

  8. #8
    osCMax Developer

    michael_s's Avatar
    Join Date
    Jul 2002
    Location
    Phoenix, AZ
    Posts
    19,500
    Rep Power
    567


    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 installation service - Have our professionals install osCmax on your server - same day service!
    osCmax 2.0 User Manual - the must have beginners guide to osCmax v2.0

    Stay Up To Date with everything osCMax:
    Free osCMax Newsletters - Security notices, New Releases, osCMax News
    osCMax on Twitter - Up to the minute info as it happens. Know it first.

    osCmax Documentation

  9. #9
    New Member
    Join Date
    May 2003
    Posts
    24
    Rep Power
    0


    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.

  10. #10
    osCMax Developer

    michael_s's Avatar
    Join Date
    Jul 2002
    Location
    Phoenix, AZ
    Posts
    19,500
    Rep Power
    567


    Default

    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 installation service - Have our professionals install osCmax on your server - same day service!
    osCmax 2.0 User Manual - the must have beginners guide to osCmax v2.0

    Stay Up To Date with everything osCMax:
    Free osCMax Newsletters - Security notices, New Releases, osCMax News
    osCMax on Twitter - Up to the minute info as it happens. Know it first.

    osCmax Documentation

Similar Threads

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

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •