Welcome, Guest
Username: Password: Remember me
Use this Category for your support questions about Virtuemart Template - PureMart (SKU# FLEX-00010)

TOPIC: CSS ?

CSS ? 11 years 3 months ago #2160

hi

Please see screen

bug.jpg
1 Where to look for text magnification
2 In IE, you can not see the icons. how to fix it. Where to turn off the facebook icon?
3 lack of space on the other pages looks ok. How to fix it ?
4 goes beyond the margin of

bug2.jpg
background color should be clear - I think :)
How to improve the display of Polish characters?

bug3.jpg
1 how to organize the display of shipping and payment options?
2 string "Suma" touches margin. how to fix it?

For all the answers and the time devoted to thank you very much

Regards
Attachments:
The topic has been locked.

CSS ? 11 years 3 months ago #2164

Hi,

Yes those are minor CSS conflict issues (conflict between your joomla template and PureMart) and can be handled easily with using Firefox Firebug plugin.

If you provide your live website URL and let me browse&investigate it. I will be able to provide you the patches for those CSS issues.

Regards.
Forum Support.
The topic has been locked.

CSS ? 11 years 3 months ago #2199

The topic has been locked.

CSS ? 11 years 3 months ago #2210

Hi,

Short Description Vs. Long Description.
Look at the 2 screenshots below:

Attachment Pasted_Image_1_29_13_1_12_PM.gif not found



AND

Attachment Pasted_Image_1_29_13_1_15_PM.gif not found




To hide the facebook, twitter icon when it is IE. Open this PHP file:
itbox.com.pl/strona/vmlampy/templates/ecotech/index.php
(the index.php file of your joomla template)
anywhere within the <head>....</head>
Add this Style Decleration:
<!--[if lt IE 9]>
<s-tyle type="text/css">
.FlexibleShareItemLeft {
	display:none;
}
</style>
<![endif]-->
Dont' forget to change the s-tyle... to style... in the above lines while copy pasting.

So those icons will be invisible only if the browser is IE but remains being visible for other browsers.

Another problem:
Open this CSS file:
itbox.com.pl/strona/vmlampy/templates/ecotech/html/com_virtuemart/assets/css/flexibleVM2Global.css

Find this CSS rule:
#vmCartModule.vmCartModule {
	background:url(../images/Flexible/vmCartBack.png) right top no-repeat;
	height:28px;
	display:block;
	line-height:28px;
	cursor:pointer;
	font-size:10px;
	padding-left:0px;
	width:220px;
}

In this CSS rule, change the width:220px; to width:200px;
So the dropdown shopping cart won't go beyond the margin anymore.

Our VM Template, uses the Oswald - Google Web Font from the Google Font library.
Try this to include not-latin characters as well:
itbox.com.pl/strona/vmlampy/templates/ecotech/html/com_virtuemart/assets/css/flexibleVM2Global.css

Find the first line:
@import url(https://fonts.googleapis.com/css?family=Oswald:400,300);

change it to this:
@import url(https://fonts.googleapis.com/css?family=Oswald:400,300&subset=latin,latin-ext);

So the font will include the non-latin characters as well (i don't know if google web font supports polish characters, but give it a try. For more info visit here: www.google.com/webfonts and search for the "Oswald" font-family


Another problem:
Look at this CSS file again:
itbox.com.pl/strona/vmlampy/templates/ecotech/html/com_virtuemart/assets/css/flexibleVM2Global.css

find this CSS rule:
.FlexibleFrontpageHeader span.FlexibleFrontpageHeaderSPAN {
	background:#FFF;
	padding-right:10px;
 
}

Change it with this:
.FlexibleFrontpageHeader span.FlexibleFrontpageHeaderSPAN {
	background:#F9F9F9;
	padding-right:10px;
 
}

So the background of the TITLE will be same color as your website's background.

About the last screenshot.
Open this CSS file again: itbox.com.pl/strona/vmlampy/templates/ecotech/html/com_virtuemart/assets/css/flexibleVM2Global.css
Add this CSS rule:
table.cart-summary tr th {
padding:0 10px 0 0
}

So the last word in the shopping cart won't touch the edge. (you might also add the background:none; to remove the background bar completely. Up to you.

About the stylization of "descriptions" of payment and shipping. Use Firebug and try something else, depends on which way you like. Virtuemart added line-height:27px; to those lines, this is why it looks absurd. But since they are element.style can't be override by CSS touches. You might try this:
.vmpayment_name, .vmpayment_cost, .vmshipment_name, .vmshipment_cost {
	display:block;
}

But again, since it is al about "style" and the way you want it. There is no "right" or "wrong" way. You have to decide which way you would like to have it.

That's all.

By the way, you should have done these changes by yourself in couple minutes if you were using Mozilla Firebox Firebug Plugin.
To get more info about it, visit here: www.flexiblewebdesign.com/forum-virtuemart-2-template-puremart-support/342-using-firebug-for-customization-or-troubleshooting

Regards.
Forum Support.
Last Edit: 11 years 3 months ago by Support.
The topic has been locked.

CSS ? 11 years 3 months ago #2226

<!--[if lt IE 9]>
<s-tyle type="text/css">
.FlexibleShareItemLeft {
display:none;
}
</style>
<![endif]-->

I'm sorry but not know where to insert this?

Regards
The topic has been locked.

CSS ? 11 years 2 months ago #2232

Hi,

Open this PHP file:

ROOt/templates/<yourjoomlatemplatefolder>/index.php

And look at the screenshot:
You should include these lines anywhere between <head>...</head>


Attachment Pasted_Image_1_30_13_7_26_PM.gif not found



Regards.
Forum Support.
The topic has been locked.

CSS ? 11 years 2 months ago #2242

I wrote code to template.php. There I found the Head sections. Unfortunately, the IE links still exist

I want to edit the display of invoice. Where can I find the ability to edit gaps in the tables "%"
Questions may seem simple. Please bear with us.
Attachments:
The topic has been locked.

CSS ? 11 years 2 months ago #2256

Then open this CSS file:
itbox.com.pl/strona/vmlampy/templates/ecotech/html/com_virtuemart/assets/css/flexibleVM2Global.css

and add this CSS rule to the bottom:
.FlexibleShareItemLeft {
display:none;
}

I was trying to have you disable those buttons only in IE because you were saying they don't work only in IE (even though they work IE theoretically, because those sharebuttons are generated through www.addthis.com and this service is well supported by IE (unless there is some protection or something in your IE browser) .

About changing the table's percentage values. I really don't know which page you are talking about, but that page is not styled by our VM Template, so you should edit some Virtuemart Files for customization.

You can look at this folder:
ROOT/components/com_virtuemart/views/invoice/

There are 4 PHP files in this folder which generates the Invoice. Look at them, i am sure one of them is what you are looking for. But again, creating invoice is not handled by our VM Template, so this is why you need to take a look at Virtuemart component's folder.

Regards.
Case solved. Topis is closed.
The topic has been locked.
Time to create page: 0.098 seconds

MaterialMart

for Virtuemart 3

Google's Material Design has finally arrived to Virtuemart

Virtumart Template - MaterialMart Virtumart Template - CleanMart Virtumart Template - CleanMart Virtumart Template - CleanMart

Fully responsive!

Buy Now   |   Live Demo