Hello there! I was wondering how can I change the font of the Home-Page featured headings that I have added through the theme's settings. This is the link of the website: http://awpror.se These are the headings: Beställ Gasarbete / VVS / Om Awp Rör / Kompetens Also I would like to do the same thing for the page Headings. For example: "Kompetens" heading on http://awpror.se/kompetens I noticed that they somehow became images when I tried to edit them through CSS commands. Instead of having font size, I can add width and height as for an image. The thing is that I only want to increase the font size for those headings. Can you help?
Hello, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: #content .one_fourth h3{ font-size:30px; } .content-wrapper h2:nth-child(2) { font-size: 30px; } You can change the value of "font-size" as per your requirement. This will solve your issue.