Hi There I am looking to make the font bigger on the home page menu items. Just to the right of the logo - the Page titles Thanks
Hello, Put the following code in your custom css Appearance -> theme options -> styling options -> custom css Code: #menu li { font-size:16px; } #menu li a { font-size:16px; } #menu .ddsmoothmenu li li a { font-size:16px; } You can change the value of "font-size" according to your requirement. This will solve your problem. Thanks.
Hi Harmeet, That worked Thank you! Can you help with another font size change? I need to increase the size of the font of the blog body text as it's too small to read at the moment. Thanks
Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .content-bar .post p { font-size: 17px; } This will solve your issue.
Hi That worked as well ! Many Thanks! How Do I change the font size of the text at the bottom of the home page (not footer) the widgets body text not the headings? Than you
Paste the following code in your custom css Appearance -> Theme Options -> Styling Options -> Custom CSS Code: .footer .footer-inner p { font-size: 15px; } .footer .footer-inner a { font-size: 15px; } Adjust the value of font-size as you want.
Ok Sort of.......I did this and the third column changed only. I then added a TEXT widget to the third footer column (like col 1 & 2 ) and NO CHANGE i.e. your suggestion didn't work.....can you help me?
Hi There it is www.vintagedotty.co.uk it is the font size of the body text in the blue box at the bottom of the page Thanks
Paste the following code in your custom css Appearance -> Theme Options -> Styling Options -> Custom CSS Code: .footer-inner .textwidget { font-size: 20px ! important; } adjust the value of font-size as per requirement. This will solve your issue.