Graphical Borders
#21
Posted 17 July 2008 - 04:35 PM
echo '<tr><td>';
new productListingBox($info_box_contents);
echo '</td></tr>';
Remember, What you think I ment may not be what I thought I ment when I said it.
Contributions:
Auto Backup your Database, Easy way
Multi Images with Fancy Pop-ups, Easy way
Products in columns with multi buy etc etc
Disable any Category or Product, Easy way
Secure & Improve your account pages et al.
#22
Posted 17 July 2008 - 10:45 PM
Ronaldgoal, on Jul 17 2008, 04:18 PM, said:
to
new noborderBox($info_box_contents);
and it solved my main page table problem! But I soon as I click on one category you see my right column disapear! what can I do for that doctor?
check it out here:
www.surfnskatecolombia.com
best regards,
Luis
Problem solved thx to you
#23
Posted 17 July 2008 - 10:56 PM
Product Listing Enhancements, Thumbnails & Manufacturer Headings http://addons.oscommerce.com/info/6051
Remember, What you think I ment may not be what I thought I ment when I said it.
Contributions:
Auto Backup your Database, Easy way
Multi Images with Fancy Pop-ups, Easy way
Products in columns with multi buy etc etc
Disable any Category or Product, Easy way
Secure & Improve your account pages et al.
#24
Posted 18 July 2008 - 06:44 AM
Just for my clarification...
Your new version only wraps the infoboxes (in column left & right) with graphics?
If I want to wrap say; New Products for 'Month', Customers who bought this product also purchased, Other Products You Might Like, etc... (basically the center boxes/tables) then I would have to install possibly v2.1?
Would you happen to know if the Product Listing box/table gets wrapped with any of the versions?
Sorry for so many questions. I'm just getting so tired of installing, uninstalling contribution versions looking for the correct ones. Thought maybe you could point me in the right direction with this one.
Any help would be appreciated.
- My Toolbox ~ Adobe Web Bundle & WinMerge | Install ~ osCommerce
- Not 4 Hire ~ Please DO NOT PM me for help. I really do not have a clue what I am doing! -
- Working on a new 2.3.3 install -
#25
Posted 18 July 2008 - 08:41 AM
change to class call, say
new contentBox($info_box_contents)
to
mws_boxHeader ()
new noborderBox($info_box_contents)
mws_boxFooter()
the older versions do this in various places, but also add loads of other stuff you dont need.
Remember, What you think I ment may not be what I thought I ment when I said it.
Contributions:
Auto Backup your Database, Easy way
Multi Images with Fancy Pop-ups, Easy way
Products in columns with multi buy etc etc
Disable any Category or Product, Easy way
Secure & Improve your account pages et al.
#26
Posted 18 July 2008 - 04:40 PM
I appreciate your help and info.
Thanks for cleaning/updating the contribution.
- My Toolbox ~ Adobe Web Bundle & WinMerge | Install ~ osCommerce
- Not 4 Hire ~ Please DO NOT PM me for help. I really do not have a clue what I am doing! -
- Working on a new 2.3.3 install -
#27
Posted 20 July 2008 - 09:40 PM
Is graphical borders supports also languages text with letters from right to left.. ?
Nathali
#28
Posted 21 July 2008 - 04:47 PM
Remember, What you think I ment may not be what I thought I ment when I said it.
Contributions:
Auto Backup your Database, Easy way
Multi Images with Fancy Pop-ups, Easy way
Products in columns with multi buy etc etc
Disable any Category or Product, Easy way
Secure & Improve your account pages et al.
#29
Posted 22 July 2008 - 09:13 AM
spooks, on Jul 21 2008, 05:47 PM, said:
Hi spooks,
Thanks for your reply !
Yes. this I know..
But when I installed it long time a go when I changed to Hebrew language it didn't change the corners of the boxes, so I got some thing like that:
________
) (
) (
)________(
I hope you understand me now..
Thanks again !
Best Regards,
Nathali
Nathali
#30
Posted 22 July 2008 - 09:58 AM
[/quote]
Remember, What you think I ment may not be what I thought I ment when I said it.
Contributions:
Auto Backup your Database, Easy way
Multi Images with Fancy Pop-ups, Easy way
Products in columns with multi buy etc etc
Disable any Category or Product, Easy way
Secure & Improve your account pages et al.
#31
Posted 23 July 2008 - 04:18 AM
Is there a way of getting these infoboxes (style of them) on all the small boxes osc makes, lets say when you check out.... billing adress... paymen, insteadt of all the boxes with cornors?
if there are could somebody please tell me how.
// Lars Thaning
#32
Posted 23 July 2008 - 09:14 AM
if you have say
new contentBox($info_box_contents)
change to
mws_boxHeader ()
new noborderBox($info_box_contents)
mws_boxFooter()
if you need to place a title in the header, add the text within the brackets.
Remember, What you think I ment may not be what I thought I ment when I said it.
Contributions:
Auto Backup your Database, Easy way
Multi Images with Fancy Pop-ups, Easy way
Products in columns with multi buy etc etc
Disable any Category or Product, Easy way
Secure & Improve your account pages et al.
#33
Posted 23 July 2008 - 02:43 PM
but what abot the "boxes" in lets say checkout_confirmation.php ?
can i also do it with these?
// Lars Thaning
#34
Posted 23 July 2008 - 03:48 PM
in checkout_shipping.php
around 226 & 259 & 379 & 393 find:
<table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox"> <tr class="infoBoxContents"> <td>replace each with:
<?php echo mws_boxHeader (); ?>
then you must find the exact closing </table>
in my case
around 241 & 361 & 385 & 402 find:
</td> </tr> </table>
replace with:
<?php echo mws_boxFooter(); ?>
You must make sure you've matched the relavent opening <table> with its closing </table> or your page will get messed up.
You may find it best to move the box title into the new boxes as in:
<?php echo mws_boxHeader (TABLE_HEADING_COMMENTS); ?>
Edited by spooks, 23 July 2008 - 03:50 PM.
Remember, What you think I ment may not be what I thought I ment when I said it.
Contributions:
Auto Backup your Database, Easy way
Multi Images with Fancy Pop-ups, Easy way
Products in columns with multi buy etc etc
Disable any Category or Product, Easy way
Secure & Improve your account pages et al.
#35
Posted 23 July 2008 - 08:02 PM
i got it all working, except the thing with the opening and closing table
i think i here dont quite understand the meaning, cause my site messes up, and looks funny
it makes the the new box very nice in the top, but messes up the bottom of it, and then the rest of the page.
is there a way you cant copy the whole php file in here, so that i can see where iam wrong?
by the way thanks for great support
// Lars Thaning
#36
Posted 23 July 2008 - 08:46 PM
With a little elp from my self, i managed to solve it
Thanks for this great contrib, and thanks for your help
// Lars Thaning
#37
Posted 24 July 2008 - 10:03 PM
My site www.curbmagazine.com/cashinculture
the infoboxes have a slight line along the left side of them approximately 1 pixel wide. The only way I've found to get rid of it is by turning the entire columns background a different color, which I don't want to do. I am new so I just went through every bit of code that had anything to do with background color or image or padding or border and just commented them out but nothing hit it. I can post code if you tell me where you would like it from.
#38
Posted 25 July 2008 - 12:21 AM
I have found if you put content in the header larger than 33px high it will create this problem, I`ve not found a solution to date other than keeping within that limit.
Remember, What you think I ment may not be what I thought I ment when I said it.
Contributions:
Auto Backup your Database, Easy way
Multi Images with Fancy Pop-ups, Easy way
Products in columns with multi buy etc etc
Disable any Category or Product, Easy way
Secure & Improve your account pages et al.
#39
Posted 25 July 2008 - 04:43 PM
spooks, on Jul 25 2008, 12:21 AM, said:
I have found if you put content in the header larger than 33px high it will create this problem, I`ve not found a solution to date other than keeping within that limit.
Oh bollocks, I screwed up the link. Sorry. www.curbmagazine.com/catalog
I tried resizing my header images and found they are 33 pixels. I chopped them to 32 px and I still get this line. Anything else I could try?
#40
Posted 25 July 2008 - 05:17 PM
Remember, What you think I ment may not be what I thought I ment when I said it.
Contributions:
Auto Backup your Database, Easy way
Multi Images with Fancy Pop-ups, Easy way
Products in columns with multi buy etc etc
Disable any Category or Product, Easy way
Secure & Improve your account pages et al.









