OsCommerce v 2.3 - when?
#361
Posted 15 November 2010 - 07:14 AM
#362
Posted 15 November 2010 - 12:46 PM
syscon, on 15 November 2010 - 03:40 AM, said:
I use the Open Source WinMerge http://winmerge.org/ on the PC - it is excellent for comparing whole directories/files etc..
I just wish osCommerce had an update button like the other cart I am enjoying learning at the moment...
I am however enjoying the module style approach of 2.3, I am currently writing a new header tag module for title/description/meta and tags, instead of just the titles.
I plan to extend Osc 2.3, this time leaving the system tables intact and adding a new table for products called products_descriptions_extended, to store data for use with my new modules/files.
Its going to allow me to upgrade the core code without the issues caused by previous core/custom code merges to some degree. If anyone has any thoughts on this approach they would be welcome.
Cheers,
Pete
Edited by xmanflash, 15 November 2010 - 12:47 PM.
#363
Posted 15 November 2010 - 09:10 PM
Am curious if anyone has done any modifications like color or working with the background. I created an background image which will extend full width of page. Now in previous ver's, one just went to the stylesheet.css. In using Web Developer, it displays #bodyWrapper .container_24. So enter piece of code as I did with Rc2a. No changes. Finally found container_24 located in ext/960gs/960_24_col.stylesheet.css and type the code there. Still no results.
This is what I entered:
background-image:url('images/brown075.jpg');
background-repeat:repeat-x;
I realize there are some new folders and files, so wondering if I am missing something? Thank you.
#364
Posted 15 November 2010 - 09:10 PM
Example http://foxp2.fr.nf/osc2_3/product_info.php/products_id/29
Any way to fix this?
Cheers
Kool Kat Jazz Records
Edited by pederb, 15 November 2010 - 09:12 PM.
Kool Kat Jazz Records
#365
Posted 16 November 2010 - 01:32 AM
@pederb
Please start threads in the support and troubleshooting boards - this thread is about core development and release date - you're unlikely to attract the assistance you want by seeking help and support in this topic.
Gaz
#366
Posted 16 November 2010 - 02:20 AM
totalnumpty, on 16 November 2010 - 01:32 AM, said:
@pederb
Please start threads in the support and troubleshooting boards - this thread is about core development and release date - you're unlikely to attract the assistance you want by seeking help and support in this topic.
Gaz
Sorry about that. I was assuming this was the correct place.
Edited by blr044, 16 November 2010 - 02:22 AM.
#367
Posted 16 November 2010 - 10:42 AM
I have a highly modified store and would like to know if someone can tell me what the benefits are of upgrading to 2.3
Thanks in advance!
Ricardo
#368
Posted 16 November 2010 - 11:29 AM
ricardodacosta, on 16 November 2010 - 10:42 AM, said:
I have a highly modified store and would like to know if someone can tell me what the benefits are of upgrading to 2.3
Thanks in advance!
Ricardo
If you go back a few pages, this was already answered in detail.
#369
Posted 16 November 2010 - 12:15 PM
blr044, on 15 November 2010 - 09:10 PM, said:
Am curious if anyone has done any modifications like color or working with the background. I created an background image which will extend full width of page. Now in previous ver's, one just went to the stylesheet.css. In using Web Developer, it displays #bodyWrapper .container_24. So enter piece of code as I did with Rc2a. No changes. Finally found container_24 located in ext/960gs/960_24_col.stylesheet.css and type the code there. Still no results.
This is what I entered:
background-image:url('images/brown075.jpg');
background-repeat:repeat-x;
I realize there are some new folders and files, so wondering if I am missing something? Thank you.
see here: My link
#370
Posted 16 November 2010 - 12:24 PM
Add a new stylesheet, reference it in the page header and then new ID's or CLASS's for use. Remember you can have muliple classes; http://forums.oscommerce.com/topic/364291-oscommerce-v-23-when/page__view__findpost__p__1542429
Also you can have a class AND an id at the same time.
<div class="this" id="that">hello</div>
.this {
background: blue;
color: white;
}
#that {
border: 20px solid black;
}
Or maybe a ready made theme for your shop ??
Warning: My posts may contain Horsemeat.
#371
Posted 16 November 2010 - 05:35 PM
burt, on 16 November 2010 - 12:24 PM, said:
Just be aware that CSS has some difficult to understand rules about how cascaded sheets interact and when you have multiple conflicting instances of a property (e.g., multiple colors from different rules and selectors). In general, the more specific a rule is to a given screen element (e.g., an id rather than a class, or a class rather than an HTML tag), the higher its priority. Multiple classes can be a real pain, and not all browsers handle them quite the same (especially if you have a "selector" with multiple classes chained together, e.g., .class1.class2 {...).
Just a "heads up" so when you do something more than very simple CSS, you know that you may have to do some digging to figure out which definition of a CSS property is being applied in a particular case.
#372
Posted 16 November 2010 - 08:26 PM
MrPhil, on 16 November 2010 - 05:35 PM, said:
Just be aware that CSS has some difficult to understand rules about how cascaded sheets interact and when you have multiple conflicting instances of a property (e.g., multiple colors from different rules and selectors). In general, the more specific a rule is to a given screen element (e.g., an id rather than a class, or a class rather than an HTML tag), the higher its priority. Multiple classes can be a real pain, and not all browsers handle them quite the same (especially if you have a "selector" with multiple classes chained together, e.g., .class1.class2 {...).
Just a "heads up" so when you do something more than very simple CSS, you know that you may have to do some digging to figure out which definition of a CSS property is being applied in a particular case.
Really nice explanation by mrP here I think.
I have to confess that css hierarchy and priorities are a subject that I really haven't got a full handle on yet. ( note to self )
Chaining classes in a selector for me are a key aspect of css coding especially if you are able to build your own little "reusable framework" to cut down the single use classes. Also fantastically useful when pushing and pulling classes via javascript.
KissMT Dynamic SEO Meta & Canonical Header Tags
KissER Error Handling and Debugging
KissIT Image Thumbnailer
Security Pro - Querystring protection against hackers ( a KISS contribution )
If you found my post useful please click the "Like This" button to the right.
Please only PM me for paid work.
#373
Posted 17 November 2010 - 02:10 AM
MrPhil, on 16 November 2010 - 05:35 PM, said:
Just a "heads up" so when you do something more than very simple CSS, you know that you may have to do some digging to figure out which definition of a CSS property is being applied in a particular case.
Or you could ditch IE and run FireFox with FireBug installed, and use that for examining the loaded page to identify each element of loaded html and css - it's saved me countless days of head scratching and trial and error.
#374
Posted 17 November 2010 - 03:14 PM
totalnumpty, on 17 November 2010 - 02:10 AM, said:
I normally use FF and Firebug, but was suprised the other day to see that IE8 has a 'firebug' style tool built in that is actually quite good.. (for looking at classes etc)
Load a page in IE 8, Hit F12 to load the Developer Tools (DOM Browser), and then CTL+B and click on an element..
Microsofts motto.. "If you cant beat them, join them begrudgingly...."









