For the bullet list I found a solution.
Find your reset.css, from the big list remove ‘padding: 0;'(This will messup your footer styling) Then go to you style.css and find ‘footer ul’. There you need to add ‘padding: 0;’. This will fix the footer.
This worked for me.
To hide the search I did the following:
In your style.css I did this
.top-search .searchform {
display:none;
}
This made it hide the search bar.
I also did the same with the sidebar
.sidebar {
padding-left:25px;
padding-top:40px;
display: none;
}
This is also found in the style.css. The only problem with this is, when there is a update. You can do this all over again 🙁
________________________________________________________________
You guys have any idea how to get the mobile navigation aligned? In portrait mode the nagivation is aside the website. Still don’t know how to fix this.