Hi All,
Great theme, couple questions. website is sportsmockery.com
How can I center the top menu item choices rather than having them aligned to the left?
How can I add the author name smaller, next to the date, on the top of the post, linked to author page, rather than having it shown on the bottom? (between Title and Featured pic)
Any help would be greatly appreciated, thank you.
Chris
Hi,
Use this custom css in theme panel > custom css field to center the menu, like this: http://screencast.com/t/MFh2qyFzBE
#td-top-menu .sf-menu {
display: table;
float: none;
margin-left: auto;
margin-right: auto;
}
You have an option to show the author under title on post pages in theme panel: http://screencast.com/t/if0C81y1k28
Disable author box from here: http://screencast.com/t/nWbqQQBU
Thanks
Hi,
You can download it from themeforest: http://themeforest.net/downloads
Yes, you do as the latest version of the theme is 4.6.1 and the option in panel to show the author under the title was added in 4.4 theme version: http://screencast.com/t/elMDqViQ so please make sure you update your theme and you will also have this option.
Please use the theme update guide and use the FTP method and also remember to make a backup of your current theme installation so in case something goes wrong you can revert back to it. Here are the docs on how to update the theme: https://forum.tagdiv.com/how-to-update-the-theme/
Thanks
Hi cbur2107,
The theme has a various of header styles and you can set “style 10” for example, it has center main menu – http://screencast.com/t/lNpYzGCz2e
If you want to use the default header style(1), you can center the menu via custom css in Theme Panel > Custom Css – http://screencast.com/t/ZCRyK2Dv
.td-header-style-1 .sf-menu {
display: table;
float: none;
margin-left: auto;
margin-right: auto;
}
Thanks!