Is there any way can get rid of the bar or make it thinner?
You can try something like this, courtesy of my colleague Richard (sacredpath):
#page {
width: 900px;
}
#page::before {
left: 360px;
}
We also noticed there’s some extraneous PHP that should not be in your main stylesheet – this is at the bottom of /writr/style.css but should be removed:
define('WP_MEMORY_LIMIT', '64M')
Also any way of adding a ‘call button’ so mobile users can ring me?
Didn’t you add this earlier? I see this in your code:
<a id="callnowbutton" href="tel:07833259653"> </a>
…and I see a big icon of a telephone displayed at mobile size.
Also on phone,menu button on with three lines is green (is fine on comp)
Add this to your custom CSS, changing the example purple to any colour you like:
#site-navigation .menu-toggle {
background: #bb00bb;
}