Forum Replies Created
-
AuthorPosts
-
Badlywired
MemberJust to give you some more feedback, I just tested it on my Son & FG (mid 20's) and they didn't get the same issue with their eyes. So this could well be an age thing, where us oldies eyes react differently. Might explain if your 50+ reviews have come from just one demographic.
My techy blog WordPress and stuff badlywired.com
Badlywired
MemberActually I was thinking about chating to you about Genesis build work especially as you put "PSD to Genesis (my preferred plan)", your design skills are not relevant to me, but coding is. If you are not too upset with me, get in contact if you want to discuss build opportunities.
My techy blog WordPress and stuff badlywired.com
Badlywired
MemberExactly as you say, as I scroll, the 'ripples' of the wood effect cause me an issue with my eyes. Its not an opinion, its a fact.
It may be just an issue with my eyes, as I do have a retina impairment in my right eye.
It creates a blurring effect during the scroll that makes it impossible fro me to scan the text as I scroll the page.
For your benefit, I also tested it on my wife, without prompting her comments were scrolling makes her eyes go funny, like vertico. And (in her words) the colours are horrible.
p.s. why not try http://www.criticue.com/ and get some varied feedback.
My techy blog WordPress and stuff badlywired.com
March 14, 2015 at 7:31 am in reply to: How to build custom widget area for recipes above related posts #144384Badlywired
MemberAh ha I mis understood.
As an alternative,
what about using widget logic plugin with is_single() && is_categogry('recipes')
My techy blog WordPress and stuff badlywired.com
Badlywired
MemberI'm afraid it is hard to read. White on black isn't great and the wood effect through transparent does my eyes in when scrolling. I only put up trying to look at it as I wanted to give you feed back. If I was looking to get a web site designed and saw your sites I would leave in 3 seconds and not come back.
Sorry, but thats the way it made me feel.
My techy blog WordPress and stuff badlywired.com
Badlywired
MemberBadlywired
MemberIf you are using the standard Category widget and hierarchy is not ticked, sub categories should not show. If they do something is amiss.
My techy blog WordPress and stuff badlywired.com
March 13, 2015 at 4:45 pm in reply to: How to build custom widget area for recipes above related posts #144333Badlywired
MemberI know that Genesis codes like to do everything with Genesis hooks, but could you not create a custom template for reciepes
along the lines of single-{post_type}.php i.e. single-reciepes.php
http://codex.wordpress.org/Template_Hierarchy
My techy blog WordPress and stuff badlywired.com
Badlywired
MemberSeems to be working (resize) for me. Have you resolved this?
My techy blog WordPress and stuff badlywired.com
Badlywired
MemberHave you got 'show hierarchy' ticked in the Category widget? If so, un tick it.
My techy blog WordPress and stuff badlywired.com
Badlywired
MemberMy main comment, if you can afford it, move to a faster host, your site is unusably slow. I believe SiteGround is good and their WordPress plans start at very affordable levels.
My techy blog WordPress and stuff badlywired.com
Badlywired
MemberNot 100% certain but image size issues after theme migration are often fixed with this plugin https://wordpress.org/plugins/regenerate-thumbnails/
My techy blog WordPress and stuff badlywired.com
Badlywired
Memberplease start with increasing the body font from 13px to 15px
My techy blog WordPress and stuff badlywired.com
March 12, 2015 at 3:48 pm in reply to: Whitespace Pro – Change Hyperlink Colors? Defaulting to Theme's accent Color. #144236Badlywired
MemberGlad to have helped, please don't forget to visit my blog to search for other genesis tips as I work them out.
My techy blog WordPress and stuff badlywired.com
Badlywired
MemberThe theme you are using is pretty old and isn't mobile responsive. It might be time to modernize.
My techy blog WordPress and stuff badlywired.com
March 12, 2015 at 3:40 pm in reply to: Whitespace Pro – Change Hyperlink Colors? Defaulting to Theme's accent Color. #144232Badlywired
Member.site-container a:hover {color: #999;}
or what ever colour you want
My techy blog WordPress and stuff badlywired.com
Badlywired
MemberIf I understand you correctly, you want to remove header right widget from a page, this code in your functions.php will do that
add_action( 'genesis_meta', 'my_remove_hr'); function my_remove_hr() { if ( is_page( 'my-page' ) ) { unregister_sidebar( 'header-right' ); } }
You will need to adjust the if statement see http://codex.wordpress.org/Conditional_Tags
My techy blog WordPress and stuff badlywired.com
March 12, 2015 at 3:02 pm in reply to: Whitespace Pro – Change Hyperlink Colors? Defaulting to Theme's accent Color. #144228Badlywired
MemberThe accent colours are getting loaded after the style.css so you need qualify them so they take presidence.
Qualifying them with .site-container should be enough e.g.
.site-container a {color: #CCCCCC;}
etc
My techy blog WordPress and stuff badlywired.com
February 16, 2015 at 1:33 pm in reply to: Seek ways to vastly improve Corporate theme homepage #141039Badlywired
MemberThe above is just a spam post surely? Can it be removed?
My techy blog WordPress and stuff badlywired.com
Badlywired
MemberAre you into coding little? Then you need to add some code to your functions.php along the lines of
add_action( 'genesis_after_footer', 'my_disclaimer' ); function disclaimer() { // your markup follows ?> <div class='wrap'> <div class='my-link'> <a href= '#'>disclaimer</a> </div> </div> <?php }
Although personally I would actually add a third menu along the lines of this which is more flexible, later you may want to add another link.
function register_additional_menu() { register_nav_menu( 'third-menu' ,__( 'Third Navigation Menu' )); } add_action( 'init', 'register_additional_menu' ); add_action( 'genesis_after_footer', 'add_third_nav_genesis' ); function add_third_nav_genesis() { ?> <div class="wrap"> <?php wp_nav_menu( array( 'theme_location' => 'third-menu', 'container_class' => 'genesis-nav-menu' ) ); ?> <div class="wrap"> <?php }
And then you need to deal with css styling of course
My techy blog WordPress and stuff badlywired.com
-
AuthorPosts