Forum Replies Created
-
AuthorPosts
-
kosmiqMember
Of course. You can find the theme and it's code here: https://github.com/kosmiq/ABCWebb
kosmiqMemberThanks for the feedback, all of you! I'll take a look at the resolution of the screenshots.
As for (some of) the colors, take a look here: http://flatuicolors.com/. A lot of good colors for subtle design that you can pick and combine 🙂
kosmiqMemberNo current plans for english content. Our potential customers right now are all located in Sweden and with Swedish only customers. We might in the future however.
kosmiqMemberI took a quick look again at your page, I can see the css-file in your <head> but can not find anything related to the widget?
kosmiqMemberHi, sorry for the late response. Please start by downloading the widget/plugin again. I have updated it with proper IE7 support and a few more settings.
Could you then place it and activate it and point me to where it should show up?
Edit:
I have tested it both in the header and the footer on my showpage linked in the post and it does work.
kosmiqMemberRobAlex, you got a point. I only tested it on my IPS monitor, when testet on my laptop I see the same issues with readiblity. Might have to think some about that. Thanks! 🙂
kosmiqMemberThanks for the feedback! I have ditched the electric blue in favor of the one from the header plus I have increased the overall width of the page with 40px and it does look a little better.
Some other changes have been incorporated as well regarding posts with multiple categories. The site is also responsive so if you can give feedback on that layout as well I'd be grateful! 🙂
kosmiqMemberDon't think there is a genesis hook to do it all at once. However you should be able to do something like this:
/** Add category before title */
add_action( 'genesis_before_post_title', 'do_category_before_title' );
function do_category_before_title() {
printf( the_category() );
}You will probably need to add some styling etc. when it's visible, but it should at least display it.
If you only want it to appear when viewing a single post simply change it to
/** Add category before title */
add_action( 'genesis_before_post_title', 'do_category_before_title' );
function do_category_before_title() {
if( is_single() ) {
printf( the_category() );
}
} -
AuthorPosts