Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm writing code in Stylish, a firefox plugin, to change the image that is showing up.

The image property doesn't have a div tag, so I have to use this:

img[src*="s_dschjungelplanet"]{
##########
}

So this will replace "s_dschjungelplanet" anywhere in the page, in a img src.

So my main problem is that I'm not sure HOW to tell it to replace the src="xxx".

Ta for replies

share|improve this question
If you have the width & height of the image, you can try Rob's solution: stackoverflow.com/a/10247567/632951 – Pacerier Jul 14 '12 at 15:07

3 Answers

There is no easy way. I think you'd be better of with greasemonkey scripts, as with a simple such script you can change the url.

As far as I know, you can not change the url with css only. This was the closest I was able to come with css only:

img[src*="s_dschjungelplanet"]{
    width:0;
    height:70px;
    padding-right:250px;
    background:transparent url(http://i.stackoverflow.com/Content/Img/stackoverflow-logo-250.png) top left no-repeat;
}
share|improve this answer

You can try this:

img[src*="s_dschjungelplanet"]{ content: url("myfavorite.png"); }

Works in Chrome, not in Firefox...

share|improve this answer
It also works in Opera. Thanks..! – Archenoth Dec 12 '12 at 19:06
img[src*="http://url-of-image-to-be-replaced.jpg"]{
    background-image: url("https://url-of-image-you-want-to-display.jpg");
    width:38px;
    display:inline-block;
    padding:38px 0 0 0;
    height: 0px}

Change the width and padding to your specs. It's worked for me. http://costumingdiary.blogspot.com/2012/08/replace-deleted-profile-pic-in-blogger.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.