Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
If you’re not using a Child Theme, and if the theme doesn’t have a designated section of the dashboard for CSS modifications then do the following:
- Install this Custom CSS Manager plugin http://wordpress.org/plugins/custom-css-manager-plugin
- use its “CSS Code” section of the dashboard to hold your CSS modifications:
-
(put this code in)
.site-branding {
max-width: 70%;
}
.main-navigation.toggled .nav-menu {
position: relative;
}
- Save
Alternatively use your Child Theme style.css file to hold your CSS modifications
on the top right there is a symbol of a blue box and stripes.
It is controlled in CSS via the ‘content’ property, here is the original CSS:
.menu-toggle:before {
background-color: #0570a8;
content: "\f419";
display: inline-block;
float: right;
font-size: 24px;
padding: 15px;
vertical-align: middle;
}
So to change the symbol you need to add this Custom CSS:
.menu-toggle:before {
content: "[new-symbol-code]";
}
hi
thank you very much for your answer…
sorry i didn’t read it earlier.
can you help me how to change the colour of the 3 stripes itself to black and change the thickness of the stripes.
in the original CSS i just can change the whole size and the background
thank you so much
sorry… i managed to change it.
thanx again…
another question: now, when i click on the symbol the possible menus are not listed in a proper way (text to big).
how can i change that.