Forum Replies Created
-
AuthorPosts
-
GrahamMember
The padding on the .section_wrapper is being set using !important
.section_wrapper { padding: 1% 0 !important; }
This means that the following CSS is having no effect, even though it has a higher specificity
.section_wrapper.is_fullslider { padding: 0; }
You could add !important to .is_fullslider or reconsider the use of !important in the first place
My JustGiving page: https://www.justgiving.com/helping-graham-give
GrahamMemberWhat have you tried so far?
Have you tried disabling plugins for example?
My JustGiving page: https://www.justgiving.com/helping-graham-give
GrahamMembertext-indent: -9999px;
means that it is hidden. It's being displayed 9999px to the left - in other words, off your screen and outside the visible region.
height: 0
means that it has no height, therefore you wouldn't be able to see it even if it were on your screen
My JustGiving page: https://www.justgiving.com/helping-graham-give
GrahamMemberGlad it helped Keith. Are you able to mark as resolved?
My JustGiving page: https://www.justgiving.com/helping-graham-give
GrahamMemberhttps://codex.wordpress.org/Inserting_Images_into_Posts_and_Pages
Step 5. Attachment display settings > Link to Media file
My JustGiving page: https://www.justgiving.com/helping-graham-give
GrahamMemberGrahamMemberHad the same situation on a post in this forum a few hours ago, answered here.
http://www.studiopress.community/topic/widget-title-displaying-twice/
WordPress introduced the screen-reader-text css class in 2009, but only recently ( version 4.2 ) had they committed to making the use of this more prominent.
I hope StudioPress take this on board.
Web Accessibility in Mind
http://webaim.org/techniques/css/invisiblecontent/
My JustGiving page: https://www.justgiving.com/helping-graham-give
GrahamMemberOk that's great to hear.
Are you able to mark this post as Resolved?
My JustGiving page: https://www.justgiving.com/helping-graham-give
GrahamMemberCreate a new page, call it Home and leave the template selection as default
Then tell WordPress that you want to show this page on the front page of your site
Dashboard > Settings > Reading > Front page displays > static page > then select
My JustGiving page: https://www.justgiving.com/helping-graham-give
GrahamMemberGlad it helped 🙂
I can't edit my post, so I've corrected my typo from above here (missing closing bracket ) for future copy pasta.
if( is_singular('post') && in_category('Blog')) { // show blog-submenu }
My JustGiving page: https://www.justgiving.com/helping-graham-give
GrahamMemberDoesn't sound similar to me. You're using Instant WordPress and working locally.
My JustGiving page: https://www.justgiving.com/helping-graham-give
May 23, 2015 at 2:25 pm in reply to: Primary Navigation Bar Does NOT show at all in Mobile View #153435GrahamMemberLikewise for me on HTC phone - it shows both hamburger menu icons on page load. So am unable to replicate the issue
However, I have found the responsive menu on the Lifestyle Pro theme a bit touchy sometimes on my old HTC phone, it doesn't always show immediately. Yet soon as I touch the screen, it it appears.
My JustGiving page: https://www.justgiving.com/helping-graham-give
GrahamMemberDavide, FYI you might want to create your own topic. This one is 2 years old and already marked as Resolved, so you might not get many people looking at it.
My JustGiving page: https://www.justgiving.com/helping-graham-give
GrahamMemberis_category() checks if a category archive page is being displayed.
To test if a post is in a category use in_category()So basically, I want to add the blog-submenu widget to single posts that have the Blog category, but not the Tutorials category. Can anyone help?
if( is_singular('post') && in_category('Blog') { // show blog-submenu }
My JustGiving page: https://www.justgiving.com/helping-graham-give
GrahamMemberI would need to double check your logic, so bear with me, yet for now ..
is_singular() parameter is either string || array
is_singular( post )
should be
is_singular( 'post' )
My JustGiving page: https://www.justgiving.com/helping-graham-give
GrahamMemberUsing CSS background on the menu item is probably the way to go
e.g. this just makes the background of all the menu items yellow
.site-header .genesis-nav-menu .menu-item { background-color: yellow; }
to give them all a background image
.site-header .genesis-nav-menu .menu-item { background-image: url("path/to/your/image.png"); }
If you wanted to style each menu item differently, then you could make use of the advanced menu properties from within your WordPress dashboard.
Dashboard > Appearance > Menus > Screen options > Show advanced menu properties > Ensure "CSS Classes" is checked
You would then be able to add a separate CSS class to each menu item, e.g. program-overview. Having done that, you could then target that menu item in the CSS.
For example
.site-header .genesis-nav-menu .program-overview { background-color: red; }
My JustGiving page: https://www.justgiving.com/helping-graham-give
GrahamMemberIs this resolved?
I see a magnifying glass ( not hour glass) aligned right - but perhaps still a need to increase height?
The following padding tidied it up a bit for me
.genesis-nav-menu > .search input { padding: 5px 28px 5px 8px; }
and to push the glass icon down a bit, I increased the top by a couple of pixels
.genesis-nav-menu .search-form input[type="submit"] { top: 6px; }
My JustGiving page: https://www.justgiving.com/helping-graham-give
GrahamMemberThis is the Design Tips and Tricks forum, - perhaps better in General DIscussion?
... as to whether it's a fair price or not, only you can make that call. Each of us place different values on their own time and skill set and that of others
$120 dollars to save you potentially losing 3 months work and the time it took you to do that?
Where I live, that's a decent meal out for 2 with wine and dessert, in other parts of the word it's a different story. Your call
I can fix my own car, paint my own house, build my own patio, cut down my own trees, build my own computer. I choose not to, but that's me.
My JustGiving page: https://www.justgiving.com/helping-graham-give
GrahamMemberYou would need to edit the CSS
The classes you might need to consider altering are
.site-header .wrap { padding: 40px 0; } .site-header { background-color: #fff; min-height: 150px; }
My JustGiving page: https://www.justgiving.com/helping-graham-give
May 22, 2015 at 10:32 pm in reply to: Author Pro : how remove the cover image in the single post article #153378GrahamMemberIf you mean how to remove the featured ( cover ) image in the single book view (?). Try this
add_action('genesis_meta','child_maybe_remove_featured_image'); function child_maybe_remove_featured_image(){ if( is_singular('books') ) { add_filter( 'genesis_pre_get_image','return_empty_string' ); } } function return_empty_string(){ return ''; }
My JustGiving page: https://www.justgiving.com/helping-graham-give
-
AuthorPosts