Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
QUESTION I18N navigation with images or background image and text
#8
For simple menu items with different background images. This line of css will give a default background image to menu items:
Code:
nav a {background-image:url(images/menuimg01.png);}
then for specific images for specific pages:
Code:
nav a[href*="about"] {background-image:url(images/menuimg02.png);}
Which says (in english)
Quote:for anchor elements which are children of nav, if the href contains the text "about" then the background image is menuimg02.png
Reply


Messages In This Thread
RE: I18N navigation with images or background image and text - by Timbow - 2014-08-28, 10:14:26



Users browsing this thread: 1 Guest(s)