VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: jeel2008 on July 09, 2014, 10:43:03 AM

Title: style1.css
Post by: jeel2008 on July 09, 2014, 10:43:03 AM
hello, anybody knows where to find style1.css?
i want to adjust this 'Results' thing, see attachment, but cant find the css (googled it of course, they sent me to templates folder, but no way)

[attachment cleanup by admin]
Title: Re: style1.css
Post by: jenkinhill on July 09, 2014, 11:09:27 AM
style1.css is nothing to do with VirtueMart - it is not one of VirtueMart's default files. It will be one of your Joomla template's css files or some third party developer's css files.
Title: Re: style1.css
Post by: byPV on July 09, 2014, 12:33:54 PM
Hi,

it seems that you're using Firebug, right? Just move your mouse cursor over the "style1.css (regel 264)" and the path on the site will appear ;).

Regards,
Pavel
Title: Re: style1.css
Post by: jeel2008 on July 09, 2014, 12:54:01 PM
thanks jenkinhill and bypv
and bypv : that was brilliant. i could of thought of that myself. but i didnt.
thanks.

its ok now. strange thing is it referred to a social tabs module (mod js social tabs slider), which in my opinion cant have anything to do with the 'result area' ive adjusted.

but anyway.

[attachment cleanup by admin]
Title: Re: style1.css
Post by: byPV on July 09, 2014, 13:08:26 PM
The problem is in the CSS selector which is poorly written.

wrong:
#contact input, textarea, select

correct:
#contact input, #contact textarea, #contact select

Pavel