introducing concrete5 theme: atahualpa
We are glad to introduce just another theme for concrete5 cms:
atahualpa theme has been designed and developed by bytesforall for wordpress software. This theme has average rating over 4 (more than 200 people left their review on the wordpress website).
In concrete5 implementation we used 3-column layout. If anybody needs other page types, just let us know.
You can find more free concrete5 themes by following this link.
Best regards,
SmartWebProjects.net team
Categories: New concrete5 themes
Hey there… I’m using the Atahualpa theme (which I love!) with concrete5 for redesigning my website, and was wondering how to change the font that is used by the auto-nav block? I’m presuming there’s a bit of code somewhere in a .php or .css file that controls which font to use, but I’m not sure where to find it. Any pointers? Thanks for your help!
I’m so glad you turned this into a concrete5 theme – it’s very flexible and I love it! Thanks!!
@Kathleen
themes/atahualpa/elements/header.php
For active page:
ul.nav-header li.nav-selected a:link,
ul.nav-header li.nav-selected a:active,
ul.nav-header li.nav-selected a:hover,
ul.nav-header li.nav-selected a:visited,
ul.nav-header li a:hover
{
background-color: #eeeeee;
color: #000000;
}
For other items:
ul.nav-header li a:link, ul.nav-header li a:hover, ul.nav-header li a:visited, ul.nav-header li a:active
{
color: #777777;
text-transform: uppercase;
font: 11px Arial, Verdana, sans-serif;
}
@admin
Thank you! I really appreciate your help, and it has made a big difference to how my site looks. Thanks again!