Our site www.viart.com site is operated by latest Viart Shop 5 with default Clear design
Topic Information
TOCDCO
TOCDCO
Broad grin We need a new CSS guide for ViArts product.
 
DickS
DickS
Not only that, I want an updated 3.4.5 with bugs fixed (we have found many Sad) and an updated manual that covers more in depth features like EU VAT and other specifics.
 
SajMalik
SajMalik
Yes Dan - this is a regular call so I hope it is in development for early release. CSS is fundamental so a clear and easy to understand guide is crucial.
 
ewoud
ewoud
I second that. The amount of bugs make me very insecure about switching my live site to 3.4. I need to know a little bit more about what's under the hood...
btw: did they include the EU VAT line of code that dick was telling about in another thread?
 
on2dvd
on2dvd
We do need a good CSS guide, I just find it really hard to understand the levels of tables and rows etc with regard to the background colors. I have it almost the way I want but there's some pages all my good work gets knocked out by another layer above it or something.
 
TOCDCO
TOCDCO
Please ViArt.. help us Smile
 
DickS
DickS
@ewoud: the EU-VAT is there, just not automatically applied. You need to do that yourself, follow instructions in my post and you're all set. Pretty easy actually and not really a "broken function".
 
A note on the positive side, we have 3.4.5 running with the latest patches and fixes and it seems to run nicely.
 
DickS
 
TOCDCO
TOCDCO
I also have it running with the latest patches and fixes, and everything seems extremely smooth as well.
 
SajMalik
SajMalik
I guess not everyone will have seen the thread at:
http://www.viart.com/a_new_css_reference_table.html
 
I proposed an annotated CSS file which would help to guide us on each section [Example below] - we may need more than this if the CSS file is too complex?
 
========================== suggestion =============
/* a little spacing above and below the links in the Account Options block */
 
.acct_options div.nav_link_container {
margin-top: 10px;
margin-bottom: 10px;
}
 
/* fix margins for best sellers ol */
 
.best_sellers ol {
margin: 0px;
padding-left: 27px;
text-align: left;
}
 
.best_sellers ol li {
vertical-align: top;
margin-bottom: 5px;
}
 
 
/* move the links a little closer to the bullets */
 
.best_sellers a {
position: relative;
left: -5px;
}
 
/* fix alignment of text with numbered bullet for IE only */
 
* html .best_sellers a {
position: relative;
top: -2px;
}
 
/* table that contains subcategory links, below category detail */
 
.subcategory_table {
width: 100%;
}