diff options
| -rw-r--r-- | mod/profile/views/default/profile/css.php | 4 | ||||
| -rw-r--r-- | views/default/css.php | 10 | 
2 files changed, 13 insertions, 1 deletions
| diff --git a/mod/profile/views/default/profile/css.php b/mod/profile/views/default/profile/css.php index 13bae4fed..f864e8002 100644 --- a/mod/profile/views/default/profile/css.php +++ b/mod/profile/views/default/profile/css.php @@ -149,6 +149,10 @@ img.medium {  	margin-top:4px;  	padding-top:2px;  } +#owner_block .owners_content_links ul { +	margin:0; +	padding:0; +}  #owner_block .owners_content_links ul li {  	display:block;  	float:left; diff --git a/views/default/css.php b/views/default/css.php index 060bc7d39..bb7998d59 100644 --- a/views/default/css.php +++ b/views/default/css.php @@ -69,7 +69,9 @@ img {  	-moz-outline-style: none;  }  ol, ul { -	list-style:none outside none; +	/* list-style:none outside none; */ +	margin: 0 0 10px 0; +	padding-left: 20px;  }  em, i {  	font-style:italic; @@ -80,6 +82,9 @@ ins {  del {  	text-decoration:line-through;  } +strong { +	font-weight:bold; +}  table {  	border-collapse: collapse;  	border-spacing: 0; @@ -942,6 +947,9 @@ li.navigation_more ul li {  .generic_comment_body {  	margin:3px 0 5px 0;  } +.generic_comment_body p { +	margin-bottom: 10px; +}  /* latest comments in sidebar */  #elgg_sidebar .generic_comment.latest {  	padding:2px 0; | 
