You want to adjust the CSS here:
body#bp-default #wp-admin-bar .padder {
min-width: 960px;
max-width: 1250px;
}
You may also want to do:
#wp-admin-bar {
width: 100%;
}
Depending on your theme.
Try putting that in your child theme with the changes you want.
Add the following to your theme’s stylesheet:
#wp-admin-bar {
left: auto !important;
max-width: 960px !important;
width: 960px !important;
}
If you know CSS, then you can use Chrome Developer or add Firebug to Firefox to identify which selector to style/restyle.
Thank you for the prompt responses to both of you! I tried yours methods, karmatosed, but it didn’t work. Then I tried yours, @mercime, which worked. So, thank you very much again to both of you.
Cheers!
You’re welcome
Marking this as resolved.