Commit 1b54a3399d7999367b9b48b24d5274f43e9bec9a

Authored by Melissa Wen
1 parent 48c26d42

Hide wiki block in all pages except profile page (community homepage)

Showing 1 changed file with 16 additions and 0 deletions   Show diff stats
css/community-pages.css
... ... @@ -497,6 +497,22 @@ float: left;
497 497 text-align: center;
498 498 }
499 499  
  500 +/* Wiki block - Need to develop solution - Only display on profile page */
  501 +.template-default #content .box-3 .wiki-block,
  502 +.template-lefttopright #content .box-2 .wiki-block,
  503 +.template-leftbar #content .box-3 .wiki-block{
  504 + display: none;
  505 +}
  506 +
  507 +.template-default .action-profile-index #content .box-3 .wiki-block,
  508 +.template-lefttopright .action-profile-index #content .box-2 .wiki-block,
  509 +.template-leftbar .action-profile-index #content .box-3 .wiki-block,
  510 +.template-default .action-profile_design-index #content .box-3 .wiki-block,
  511 +.template-lefttopright .action-profile_design-index #content .box-2 .wiki-block,
  512 +.template-leftbar .action-profile_design-index #content .box-3 .wiki-block{
  513 + display: block;
  514 +}
  515 +
500 516 /*Block with Members information - Need to develop solution - Only display on profile page */
501 517  
502 518 .profile-type-is-community #content .members-block{
... ...