Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to change background of this 2 link <a href="http://www.domain.com/index.html"> <a href="http://www.domain.com/index.php"> But condition is I can't add any class or Div id here. I can't touch this this html code also. Just I need to add some css from external. I mean in main style.css sheet. Is is possible ? I have tried with this code a { background:url(../images/image.png);} but problem is it's change the whole link's background of the page. But I want 2 different background of the 2 link. Is is really possible. Anyone can help me please :)

share|improve this question
2  
Are they inside any element with class or id? You can try to select them looking for parents or childs. – Steve Nov 23 '12 at 17:07

2 Answers

You can use CSS attribute selectors to only style links with an href that matches the links you supplied. Example:

a[href="http://www.domain.com/index.html"],
a[href="http://www.domain.com/index.php"]{
    background:url(../images/image.png);
}

You could also match all links with an href starting with http://www.domain.com using the following rule

a[href^="http://www.domain.com"]{
    background:url(../images/image.png);
}

Please check the support as older browser might ignore attribute selectors.

http://css-tricks.com/attribute-selectors/

share|improve this answer

You need to find a way to differentiate the two links, from the code you posted, they only differ in the url they point to, so you could use this:

/* anchors with href attribute ending in index.html */
a[href$='index.html'] { background:url(../images/image.png);}

/* anchors with href attribute ending in index.php */
a[href$='index.php'] { background:url(../images/image2.png);}
share|improve this answer
Thanks a lot.... It's working ... great :)... – jibon57 Nov 23 '12 at 17:29
You're welcome! remember to mark answer as accepted (check mark below score number). – Nelson Nov 23 '12 at 17:35
OK I will do. Another question...If I want to change css style only one <P> tag then what should I do ? For example <P> Hi Nelson, How are you ?</p> . Is it possible to change CSS of this <p> tag only ? – jibon57 Nov 23 '12 at 17:43
That p tag has nothing to be differentiated in CSS, you need to give more context, does that p tag have a unique parent or sibling tags? you could use those to select it with CSS.. – Nelson Nov 23 '12 at 17:50
No, I have many p tag in the page. I mean I want to change CSS only a single p tag within a full article. Is it possible ? I want to change h2 tag also. But only in one page. I don't want to change global css of h2 or p tag. Anyway thanks for your time :) – jibon57 Nov 23 '12 at 18:09
show 12 more comments

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.