Hi i need to change my font in the sidebar to the size of the font on the page,which is 18PX .how do i go about doing this?
URL-http://itc-solutions.co.za
Hi i need to change my font in the sidebar to the size of the font on the page,which is 18PX .how do i go about doing this?
URL-http://itc-solutions.co.za
You should create a Child theme to make your changes. If you do not, all of your changes will be lost if you update your theme.
The sidebar is in a div with the id='primary', so the fonts can be controlled with that.
Try adding this to the end of your child theme's style.css:
#primary {
font-size: 18px;
}You must log in to post.