Forum Discussion

lc-garcia's avatar
12 years ago

Mobile CSS udpates

Hi there,

 

I've been trying to do some CSS updates for the following page on mobile

 

http://h30434.www3.hp.com/t5/Android-Tablets-e-g-HP-Slate-7/bd-p/android

 

I haven't found what I'm looking for (the "New Post" background) on Studio for the mobile skin

 

Has anyone tried this before, does anybody know how to find out CSS selectors on mobile?

 

Gracias,

Luis

2 Replies

  • ChudoL's avatar
    ChudoL
    Lithium Alumni (Retired)
    12 years ago

     

    One way we work with our CSS on our mobile product is to use tools like Chrome's developer tools to override the user agent:

    https://developers.google.com/chrome-developer-tools/docs/mobile-emulation#emulate-device-viewports

    (See "Emulating the User Agent")

     

    Once you refresh the page, you can then use Chrome's Developer Tools to inspect the elements you're interested in.

     

    You can also force the device view of our product by adding "?device-view=mobile" to the URL like this:

    http://h30434.www3.hp.com/t5/Android-Tablets-e-g-HP-Slate-7/bd-p/android?device-view=mobile

     

    You can switch back to the desktop view by clicking "Full" in the footer of the mobile pages or adding "?device-view=desktop" to the URL. Hope that helps.

     

  • MoniqueL's avatar
    MoniqueL
    Lithium Alumni (Retired)
    12 years ago

    Doing what Chudo has suggested to get a mobile view, it looks like you're looking for this chunk of css? It would seem that new (unread) message backgrounds have been set to transparent. When i turn off that property in firebug, it defaults to a grey background. Are you looking to go back to that behavior?

     

    #lia-body .lia-content .lia-component-message-list .lia-list-wide .lia-list-row-thread-unread td, #lia-body .lia-content .lia-component-message-list .lia-list-slim .lia-list-row-thread-unread td, #lia-body .lia-content .lia-component-notes-list .lia-list-wide .lia-list-row-thread-unread td, #lia-body .lia-content .lia-component-notes-list .lia-list-slim .lia-list-row-thread-unread td, #lia-body .lia-content .lia-component-kudos-list .lia-list-wide .lia-list-row-thread-unread td, #lia-body .lia-content .lia-component-kudos-list .lia-list-slim .lia-list-row-thread-unread td, #lia-body .lia-content .lia-component-bookmarks .lia-list-wide .lia-list-row-thread-unread td, #lia-body .lia-content .lia-component-bookmarks .lia-list-slim .lia-list-row-thread-unread td {
        background-color: transparent;
    }