Same id display at one page and not at another

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • FaryalAli
    New Member
    • May 2012
    • 1

    Same id display at one page and not at another

    Hi,

    I am quite new to css. I have two pages where id for an image is same. I want to display it one page and hide on another. How can I do it.
    I cannot add another class or id as html is fixed.
    at first page: <img id="logo" width="26" height="26" border="0" title=" Home" alt=" Home">
    at 2nd page: <img id="logo" class="masthead Logo" border="0" align="left" title=" Home" src="/images/custom/logo.PNG" alt=" Home">
  • Dave0291
    New Member
    • Jan 2012
    • 33

    #2
    Just add this to your CSS

    Code:
    .mastheadLogo { display: none; }

    Comment

    Working...