displaying a div only on tumblr blog homepage?

前端 未结 9 1940
陌清茗
陌清茗 2020-12-24 11:17

I have a fairly novice understanding of CSS and HTML, and I\'m trying to do something that I think should be relatively simple (in a custom tumblr theme I\'m creating), but

9条回答
  •  伪装坚强ぢ
    2020-12-24 11:54

    You can also do it just with CSS.

    #box{
      display:none;
    }
    
    .page1 #box{
      display:block;
    }
    

    
      
    Only displayed in first page.

提交回复
热议问题