stefen 0 Report post Posted October 26, 2011 I have bought PlatformPro yesterday and started to develop a site using the PlatformBase. It is a great product and saves a lot of time in the development. However there are 2 things I want to do, where I have not yet found out how. a) I want to change the menu font I want to eliminate the PlatformPro logo and link at the very bottom of the page. But I do not see how I can get to these elements. If I delete them in Firebug, they reappear on reload. Thanks very much for your help Stef Share this post Link to post Share on other sites
Danny+ 1,327 Report post Posted October 26, 2011 Hi Stefan, To add custom code to Platform, goto Platform Settings --> Custom Code --> CSS Rules. All you custom css goes here. As for changing your menu font, you could simply goto your Typography settings. But if you wish to have a unique font for your menu, try adding this to your CSS Rules in Platform Settings: [code] .main-nav li a { font-family: Comic Sans !important; } [/code] Of course you can change Comic Sans to whatever you wish. To remove the logo from the footer, add this to your CSS Rules: [code] #cred { display: none; } [/code] Please search our forums, before posting! Share this post Link to post Share on other sites
stefen 0 Report post Posted October 26, 2011 THanks for your prompt reply. I will try this. Share this post Link to post Share on other sites