-
AuthorPosts
-
eric67 Friend
eric67
- Join date:
- January 2009
- Posts:
- 39
- Downloads:
- 0
- Uploads:
- 3
- Thanks:
- 7
- Thanked:
- 6 times in 1 posts
January 15, 2009 at 3:07 pm #137140Hello,
I use virtuemart as a catalog only and I don’t want to show prices or any comment. The problem is I can see the mask in the area where prices and comments are normally displayed.
Please have a look either on the site or the attached file to see what I mean.
To see the problem on the site please click to any product. eg. on Monitors.
Any idea to solve that problem ?
Regards,
Eric.
anisjolly Friendanisjolly
- Join date:
- April 2008
- Posts:
- 661
- Downloads:
- 0
- Uploads:
- 15
- Thanks:
- 33
- Thanked:
- 96 times in 55 posts
January 15, 2009 at 3:31 pm #286623Hi Eric
can you please provide us with a URL?
Thanks
eric67 Frienderic67
- Join date:
- January 2009
- Posts:
- 39
- Downloads:
- 0
- Uploads:
- 3
- Thanks:
- 7
- Thanked:
- 6 times in 1 posts
January 15, 2009 at 3:47 pm #286628anisjolly Friendanisjolly
- Join date:
- April 2008
- Posts:
- 661
- Downloads:
- 0
- Uploads:
- 15
- Thanks:
- 33
- Thanked:
- 96 times in 55 posts
January 15, 2009 at 3:54 pm #286632Hey Eric
you just need to amend the following css file:
fetchscr…imbox.css (line 272) – sorry don’t know what the css file is called
.vmCartContainer {fetchscr…imbox.css (line 272)
background:#F7F7F7 none repeat scroll 0 0;
border:1px solid #DDDDDD;
float:left;
padding:5px 10px;
width:auto;
}that’ll get rid of the grey box
hope this helps
change that to
.vmCartContainer {fetchscr…imbox.css (line 272)
/*background:#F7F7F7 none repeat scroll 0 0;
border:1px solid #DDDDDD;*/
float:left;
padding:5px 10px;
width:auto;
}anisjolly Friendanisjolly
- Join date:
- April 2008
- Posts:
- 661
- Downloads:
- 0
- Uploads:
- 15
- Thanks:
- 33
- Thanked:
- 96 times in 55 posts
January 15, 2009 at 3:55 pm #286636actually that fix i’ve just posted is for the product page itself.
i’ll send you more code on the monitors section in 5 mins
anisjolly Friendanisjolly
- Join date:
- April 2008
- Posts:
- 661
- Downloads:
- 0
- Uploads:
- 15
- Thanks:
- 33
- Thanked:
- 96 times in 55 posts
January 15, 2009 at 4:00 pm #286637the fix for the monitors page is:
fetchscr…rompt.css (line 144) – again i don’t know what the css file is called
.browsePriceContainer {
/*background:#DDDDDD url( ) repeat-x scroll left bottom;
border:1px solid #DDDDDD;*/
float:left;
font-size:125%;
line-height:40px;
padding:0 20px;
}change the code to the what highlighted code is
AND
the following too:
fetchscr…rompt.css (line 153) – don’t know what the css file is called
.browseRatingContainer {
/*background:transparent url( ) repeat-x scroll left bottom;
border-color:#DDDDDD #DDDDDD #DDDDDD #E6E6E6;
border-style:solid;
border-width:1px;*/
float:left;
height:40px;
padding:0 20px;
white-space:nowrap;
}change the code above to what is highlighted
anisjolly Friendanisjolly
- Join date:
- April 2008
- Posts:
- 661
- Downloads:
- 0
- Uploads:
- 15
- Thanks:
- 33
- Thanked:
- 96 times in 55 posts
January 15, 2009 at 4:01 pm #286638that should fix it all for you.
I think the css files you need is the Main CSS file for the “default” theme for VirtueMart.
that’s what i see when i look into the css file.
eric67 Frienderic67
- Join date:
- January 2009
- Posts:
- 39
- Downloads:
- 0
- Uploads:
- 3
- Thanks:
- 7
- Thanked:
- 6 times in 1 posts
January 15, 2009 at 5:31 pm #286657Thanks a lot! Your posts helped me very well to find the issue.
In that can help here what I done:
The file is located to components/com_virtuemart/themes/ja-zeolite/theme.css
The default is that some pictures are displayed… So, just comment the lines background…
.browsePriceContainer {
font-size: 125%;
float: left;
line-height: 40px;
padding: 0 20px;
/*background: url(images/grad2.gif) repeat-x left bottom #DDDDDD;
border: 1px solid #DDDDDD;*/
}.browseRatingContainer {
white-space: nowrap;
float: left;
height: 40px;
padding: 0 20px;
/*background: url(images/grad1.gif) repeat-x left bottom;
border: 1px solid #DDDDDD;
border-left: 1px solid #E6E6E6;*/
}But I wonder if it is the right solution. Indeed, don’t you think it could be better to comment the line of code in php file than in the css? because we have now a large space beetween the title and detail product…
Have you an idea where to find ?
regards,
Eric.eric67 Frienderic67
- Join date:
- January 2009
- Posts:
- 39
- Downloads:
- 0
- Uploads:
- 3
- Thanks:
- 7
- Thanked:
- 6 times in 1 posts
January 15, 2009 at 5:33 pm #286659Thanks a lot! Your posts helped me very well to find the issue.
In that can help here what I done:
The file is located to components/com_virtuemart/themes/ja-zeolite/theme.css
The default is that some pictures are displayed… So, just comment the lines background…
.browsePriceContainer {
font-size: 125%;
float: left;
line-height: 40px;
padding: 0 20px;
/*background: url(images/grad2.gif) repeat-x left bottom #DDDDDD;
border: 1px solid #DDDDDD;*/
}.browseRatingContainer {
white-space: nowrap;
float: left;
height: 40px;
padding: 0 20px;
/*background: url(images/grad1.gif) repeat-x left bottom;
border: 1px solid #DDDDDD;
border-left: 1px solid #E6E6E6;*/
}But I wonder if it is the right solution. Indeed, will not be preferable to comment the code in php file instead the css? because we have now a large space beetween the title and detail product…
Have you an idea where to find ?
Anyway, I wonder why Rating and Prices should be displayed as I unchecked “Show Prices” in VirtueMart Global configuration… Don’t you think that could be a VirtueMart bug?
regards,
Eric.anisjolly Friendanisjolly
- Join date:
- April 2008
- Posts:
- 661
- Downloads:
- 0
- Uploads:
- 15
- Thanks:
- 33
- Thanked:
- 96 times in 55 posts
January 15, 2009 at 6:09 pm #286665glad it helped
🙂
eric67 Frienderic67
- Join date:
- January 2009
- Posts:
- 39
- Downloads:
- 0
- Uploads:
- 3
- Thanks:
- 7
- Thanked:
- 6 times in 1 posts
anisjolly Friendanisjolly
- Join date:
- April 2008
- Posts:
- 661
- Downloads:
- 0
- Uploads:
- 15
- Thanks:
- 33
- Thanked:
- 96 times in 55 posts
January 17, 2009 at 8:21 am #286894hey eric
this is the code you need:
again its in that css file (fetchscr…imbox.css on line 272)
change it from this
.vmCartContainer {
background:#F7F7F7 none repeat scroll 0 0;
border:1px solid #DDDDDD;
float:left;
padding:5px 10px;
width:auto;
}to
.vmCartContainer {
/*background:#F7F7F7 none repeat scroll 0 0;
border:1px solid #DDDDDD;*/
float:left;
padding:5px 10px;
width:auto;
}always happy to help
1 user says Thank You to anisjolly for this useful post
eric67 Frienderic67
- Join date:
- January 2009
- Posts:
- 39
- Downloads:
- 0
- Uploads:
- 3
- Thanks:
- 7
- Thanked:
- 6 times in 1 posts
January 17, 2009 at 9:17 am #286896Thanks! Easy in fact. I begin to understand how works css style. Thanks again!
Eric.AuthorPostsViewing 13 posts - 1 through 13 (of 13 total)This topic contains 13 replies, has 2 voices, and was last updated by eric67 15 years, 10 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum
default when use as catalog only
Viewing 13 posts - 1 through 13 (of 13 total)