css - How to change the Top Navigation Background color in mobile -


looking change background color of navigation black while viewing in mobile. change "menu " text white can see text. help. can't find right css selectors target this.

www.jobspark.ca

**** updated *************

@media , (max-width: 640px) { .top-nav {  background: #000 !important;  color: #fff !important;  }  } 

you can target specific viewport width through media query in css:

@media , (max-width: 400px) {   .top-nav {      background-color: black;      color: white;   } } 

this way using css, can not target specific device (mobile, tablet) rather target specific attribute of device (in case, width or screen).

you can googling 'media queries' or 'responsive design' find deeper examples.


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -