Favorit fix
line #665 Find
.qa-main {
float:left;
width:710px;
margin:0;
clear:left;
overflow:hidden;
}
Replace with
.qa-main {
float:left;
width:710px;
margin:0;
clear:left;
}
line #940 Find something similar
.qa-favoriting {
/* float:right;
margin-right:8px; */
position:absolute;
right:0;
bottom:5px;
}
Replace with
.qa-favoriting {
/* float:right;
margin-right:8px; */
position:absolute;
right:0;
bottom:20px;
}
Top widget fix
On line #157 Find
body {
background:#fff;
text-align:center;
margin:0;
padding:0;
position:relative;
}
Replace with
body {
background:#fff;
text-align:center;
margin:0;
padding:32px 0 0;
position:relative;
}
line #314 Find
#qa-login-bar{
background: #eee;
position:absolute;
left:0;
right:0;
margin:0;
height:32px;
border-bottom:1px solid #ddd;
}
Replace with
#qa-login-bar{
background: #eee;
position:absolute;
left:0;
right:0;
margin:0;
height:32px;
border-bottom:1px solid #ddd;
top: 0;
}
line #545 Find
.qa-header{
width:1000px;
margin:0 auto;
padding:60px 0 0;
}
Replace with
.qa-header{
width:1000px;
margin:0 auto;
padding:28px 0 0;
}
Markdown editor is a third party plugin and we do not support for any third party fix. However try below fix it may helps to resolve the issue for the editor
Add below code at the end in your stylesheet file
.wmd-input, .wmd-preview{
width: 100% !important;
}