in the following code which would be the surrounding class

	<div id="header">
		<a href="/"><img src="/files/itheme_logo.png" alt="" id="logo" /></a>	
		<h2><a href="/"></a></h2>
		<div class="slogan"></div>	
		<form action="/search/node"  accept-charset="UTF-8" method="post" id="search-theme-form">
<div><div id="search" class="container-inline"><div class="form-item">
 <input type="text" maxlength="128" name="search_theme_form_keys" id="edit-search-theme-form-keys"  size="15" value="" title="Enter the terms you wish to search for." class="form-text" />
</div> 

I'm trying to apply the pngfix to the logo image here.

Comments

robloach’s picture

This is the site you're refering to?
http://egoinx.com/index.php

You can't type in "#logo", or "#header img" or "#header a" ?

Amiridon’s picture

I've tried:
".header"
".header a"
".header a href"
".header a href img"
".a"
".a href"
".a href img"
".img"
And all of these replacing the period with a #.

When i get home from work I'll try wrapping the logo in an extra div. the only browser I can test this on is when I get back to work tommorow though.

robloach’s picture

neoliminal’s picture

You need to identify the a href tag. Then use that. Give it a class="pngfix" then add .pngfix to the config.

<a href="/" class="pngfix"><img src="/files/itheme_logo.png" alt="" id="logo" /></a>