• 2011 theme for WordPress is it possible to change the font for the text in the menu for mobile browsers only ?? if I change the font size in the styles.css file thru the following line it only sdeems to change my main browser and not in my mobile browser s im hoping there is a way I can leave the standard browser size at 18px while having mobile browser show a font sizae of like 8px maybe

    #access ul {

    font-size: 18px;

    list-style: none;

    margin: 0 0 0 -2.999em;

    padding-left: 0;

Viewing 1 replies (of 1 total)
  • Yes, you can always change the font (or any other attribute) of an element depending on the device that is being used to view the webpage. To do that, you have to use the @media CSS attribute. For example:

    /* FOR MOBILE DEVICES */
    @media only screen and (max-width: 650px){
      #access ul{
        font-size: 8px;
      }
    }
Viewing 1 replies (of 1 total)

The topic ‘chur’ is closed to new replies.