evilmaniac Member Mar 10, 2013 #1 Is there any harm in keeping this field blank ? I find it neater to not have a board title.
Chris D XenForo developer Staff member Mar 10, 2013 #2 Yeah it's not ideal to not have one. For example, yes, removing the Board Title will remove the title from the home page... But it will also remove things like the browser title text which is important for Google when indexing your site. A much more elegant way is to hide it using CSS. For example to hide the board title from the home page, put this in EXTRA.css: Code: .forum_list .titleBar h1 { display:none; } Upvote 0 Downvote
Yeah it's not ideal to not have one. For example, yes, removing the Board Title will remove the title from the home page... But it will also remove things like the browser title text which is important for Google when indexing your site. A much more elegant way is to hide it using CSS. For example to hide the board title from the home page, put this in EXTRA.css: Code: .forum_list .titleBar h1 { display:none; }
evilmaniac Member Mar 10, 2013 #3 Thank you very much for your reply it was very helpful Upvote 0 Downvote