The image-replacement tag has no wiki summary.
0
votes
1answer
27 views
CSS image replacement for Firefox
Hi I am using the following code to replace an image on my website using CSS:
img[src*="marker.png"]{ content: url("golfball2.png"); }
This code is good for safari and chrome. I am just wondering ...
0
votes
0answers
32 views
Place images next to eachother in docx
[audit; block=begin; comm=w:p; sub1=image]
--PageBreak--
[audit_sub1; block=begin;]
ImageElement
[audit_sub1.path;ope=changepic;from=[val];default=current;adjust]
[audit_sub1; block=end;]
...
0
votes
0answers
32 views
Weird image replacement bug when using the Kellum method & searching for text
I have found a weird bug with the Kellum method:
Basically in webkit, if you hit CTRL+F and search for Hello the text comes back into view (hit enter a few times to cycle through it) which is ...
0
votes
1answer
49 views
CSS :hover responds when I hover AROUND rather than OVER div element
I'm having a subtle but annoying problem: I'm trying to implement a "Close" cross with a CSS image replacement. The HTML is
<div id='close' title='Close'>
<a href='#'>
<img ...
0
votes
1answer
313 views
How to use the HTML5 Boilerplate ir class with inline elements?
I'm using HTML5 Boilerplate css and I would like to apply the ir class to my footer menu.
The menu is in a list, and I use inline-block to display this list horizontally.
Here is the fiddle of the ...
0
votes
1answer
57 views
Image replacement and text-align: right
I'm trying to do implement image resizing techniques, and they all work very well -- that is, until you pop in a:
body {
text-align: right;
}
Example: http://jsfiddle.net/mAGhh/
Has anyone ...
3
votes
3answers
147 views
Replace an image with a div on hover
Seems fairly simple, but I can't get it to work.
The div contains facebook / twitter links. The way it should work is that the image is displayed and then when someone hovers on it, it disappears to ...
0
votes
1answer
39 views
Replacing an image - or flogging a dead horse
I know this has been asked a lot, but I'm new to js and html and css. So, while I'm sure my question has been answered many times - I don't seem to be getting the picture. I've tried several of the ...
2
votes
1answer
109 views
H1 image replacement shows up in every brower except ie?
I've managed to get my header to work as a link in ff, safari and opera with the css image replacement
#header h1 {
background-image: url(../images/logo.png);
background-repeat: no-repeat;
...
0
votes
0answers
56 views
images requests go to the wrong folder need to reroute
Hello I know there are similar questions to this one but i have a little bit different of a spin on the information I need. What I have is an xml file that cannot be edited because of certains rights ...
1
vote
1answer
3k views
Responsive logo (image replacement) in html5boilerplate
I'm using the responsive version of html5 boilerplate via initializr.com. My site uses a custom logo so i added the .ir class to h1
.ir {
background-color: transparent;
border: 0;
...
0
votes
0answers
99 views
High Contrast Image Replacement in IE9
I'm using Technique #8 (http://css-tricks.com/css-image-replacement/) for accessibility friendly image replacement. Works fine in High Contrast mode in all browsers except IE9 (text doesn't show).
...
0
votes
1answer
145 views
Horizontally align image replaced text
Perhaps I'm being a bit thick today but I'm in need of some CSS help. I'm working on a seemingly-simple product review display. It's a div (.rating), in which are two elements:
<strong ...
0
votes
2answers
109 views
Is there a reason the JavaScript on my webpage doesn't work in IE 9?
I wrote this page to be an image gallery. When you hover over a picture, it shows you a larger version of the image. When you click one of the smaller images, the larger picture above it should change ...
0
votes
1answer
153 views
How can I use hovering to prompt a change of text in a different div using JavaScript?
So I have this webpage built that has a photo gallery on the left side. Ideally, hovering over it should change the picture that blows up to the right (which it does) but it should also change the ...
0
votes
2answers
1k views
Using CSS to Swap Out Images and Text (Pictures Included)
Alrighty guys, I got myself in over my head at my internship. Even my Computer Theory professor, who is an ex-department head from Wolfram Alpha isn't really giving me any useful information. It ...
1
vote
1answer
412 views
Why is html5 boilerplate image replacement not working here?
http://jsfiddle.net/hydroplane/r4Kn6/
I need to move that 'reblog' text out of the screen. Does anybody know why the h5bp .ir class isn't working here?
0
votes
1answer
99 views
Image replacement in Firefox does not hide text
I'm using an old version of FlexSlider (v1.4, mostly because I haven't had time to test out the new version yet) and for some reason, the text for the controls shows up in Firefox.
This is the CSS ...
1
vote
1answer
3k views
jQuery Mobile - CSS Retina Image Replacement
I have a mobile site running with jQuery Mobile. I want to have standard images for non-retina (devices without a high pixel density) devices, but want those images replaced with retina (high pixel ...
2
votes
1answer
384 views
Link with background image
I have some 10 buttons with image-text and hover states for each.
What I want to do is use background-position, width and height to only show the part of the background image sprite and hover ...
1
vote
1answer
605 views
jquery image replacement depending on scroll position only works properly after first load
I have a horizontal scrolling website and depending on the scroll position I have an image replacement. On first load of page while you scroll when it is time for the first image swap the image ...
0
votes
0answers
51 views
background-size:cover and text image replacement
can those two work together. Set a height to the and there goes the scaling, leaving the height out and the image gets clipped...
0
votes
1answer
141 views
CSS image replacement not working in MSIE 7 and 8
I'm having an issue using the empty span css image replacement technique in IE 7 & 8. My logo (transparent png) is missing. I'm assuming that it has something to do with the negative text-indent? ...
0
votes
1answer
768 views
Semantic logo with H1 image-replacement … leaves nothing to click?
I'm coding a site which has a big company logo at the top left.
So I code it with the logo as the background image, the company name in an H1, and hide the H1 using image-replacement techniques.
But ...
1
vote
2answers
84 views
Are there any scenarios where pseudo classes wouldn't work?
This sounds like an abstract question, but I'm trying to troubleshoot this project I'm working on and I am at a loss.
I had to take over a project because the first developer was fired, so I made the ...
0
votes
1answer
264 views
Changing image src with jQuery in CodeIgniter platform
I'm having a bit of trouble changing the image source, using jQuery, in my CodeIgniter website.
I'm building a custom onclick() function attached to my images (i have a list of 'checkbox' images ...
0
votes
1answer
361 views
How to replace <img> to html code with a php function
I want to replace a image with html code, that must be the output of a php function.
whenever a image tag is found in an html document, it should be passed to a php function and replaced with a html ...
1
vote
5answers
138 views
Image replacement
I have a large div with the site header/logo as the background image. Is there anything wrong with putting a h2 tag containing the site title behind this using z-index, so that it would show if the ...
0
votes
2answers
99 views
Replace '&' with an image using jQuery/CSS?
Is there a way I can change the basic text version of '&' and replace it with an image? I was thinking can we do it in jQuery? I don't want to use php for this.
Or is there a way to target it ...
1
vote
2answers
290 views
Problem with CSS image replacement in a multiple language PHP site
i'm building a multiple language (Spanish/English) site with PHP & CSS.
I have this piece of code in my common.php file to point to different css files depending on the language the user defines:
...
0
votes
1answer
123 views
Image replacement issue
I am confused by selecting the best technique for image replacement in web design.
Here at this weblog some techniques are provided:
http://css-tricks.com/css-image-replacement/
Which technique in ...
2
votes
4answers
432 views
how can I display an image when php have no image to extract fromthe server?
I've recently started learning Javascript but still not a bit expert on the subject.
So I was wondering if anybody cloud help me out.
I'm building a portfolio site using MySql databases and PHP
My ...
0
votes
1answer
2k views
CSS using images to replace horizontal menu links but disappears in IE7
After a long time of trying things I still not have come any closer, I do not know how to make the menu for this website (found here) I have appear in IE7.
I am using a css image replacement ...
0
votes
1answer
262 views
Wordpress FLIR (Facelift Image Replacement) plugin clipping off end of text
I'm using the FLIR for Wordpress plugin (v0.8.9.2) with FancyFonts enabled. I'm running Wordpress 3.1. The problem I'm having is that it appears the plugin is cutting off a couple pixels off of the ...
0
votes
2answers
713 views
Mouseover on radio button replacement?
I'm using jQuery to replace my radio buttons on this page - http://www.justdoors.co/product-selection/ and was wondering if it would be possible to add a mouseover effect as well?
I would like for ...
0
votes
2answers
632 views
jquery: radio button replacement and keyword matching
I want to replace my radio buttons with images, here is my html which will be generated by the system,
<ul>
<li><input type="radio" name="id" value="68135112" title="Default / ...
1
vote
3answers
87 views
Errors with an image replacement
I have tried every possible combination of methods for replacing an image but have found no solution that works.
I uploaded the problematic code here: http://dl.dropbox.com/u/2959730/index.html
I ...
0
votes
3answers
156 views
IE6 PNG Replace: How to make a nested <a> clickable?
For the purposes of this question, consider this:
<div class="has_transparent_png">
<a href="foo.html">
<span>
<img src="logo.jpg" />
...
1
vote
3answers
245 views
Is this a “valid” css image replacement technique?
I just came up with this, it seems to work in all modern browsers, I just tested it then on (IE8/compatibility, Chrome, Safari, Moz)
HTML
<img id="my_image" alt="my text" ...
1
vote
1answer
3k views
Updating Image (runat server) Src using jQuery/ASP.NET
I'm trying to update the source of an image using jQuery. The problem is that the img is running server side as its initial source is being set on load.
Here is the ASPX/HTML:
...
2
votes
3answers
836 views
Image change on link click without hardcoding locations?
What I'm trying to do is let a visitor change an image by clicking through a set of thumbnails. However, the problem I'm running into is that I really want to get away from hardcoding the image ...
6
votes
9answers
4k views
Best Image Replacement Technique
What is the best (as in cross-browser) technique to do image replacement in CSS? I am using sprites to do my navigation, but I want the markup to remain SEO friendly. Given the following HTML ...
0
votes
2answers
261 views
Uncontrollable jumping - sIFR lagging
sIFR-replaced text shows normally, hiding regular text without issue. However, every time a page loads on the site I'm developing, the replaced text takes forever (forever in internet-time, that is) ...
0
votes
8answers
4k views
How to replace inline text with images using CSS
I'd like to replace the text ("Word 1 Word2 Word3 Word4") in the following HTML with images, using CSS. I'd like the images to appear in-line horizontally too, as the text would.
<div ...
75
votes
15answers
83k views
Hide text using css
I have a tag in my html like this:
<h1>My Website Title Here</h1>
Using css I want to replace the text with my actual logo. I've got the logo there no problem via resizing the tag and ...
