Forum Replies Created
-
AuthorPosts
-
NicB
ParticipantAnyone got any ideas?
I have shrunk the heading text to make things look better on mobiles... so I guess the menu heights didn't adjust to that.
NicB
ParticipantWhen scrolling... both menu bars shrink - to the size I'd like them to be all the time.
But I can't find the CSS responsible...
:/
August 16, 2020 at 10:19 am in reply to: Author Pro Theme – How do I centre one footer widget? #500599NicB
ParticipantAfter much swearing and tears I've sorted this...
I put the Simple Social Icons widget in Footer 1 and then added this to the Custom CSS:
.footer-widgets-1 {
width: 100%;
}😀
August 16, 2020 at 7:16 am in reply to: Author Pro Theme – How do I centre one footer widget? #500597NicB
ParticipantIts live now..
🙂
I've been playing and forgot I'd enabled it..
August 2, 2020 at 5:02 pm in reply to: Removing Site Title and Positioning Menu on the Left. #500420NicB
ParticipantThanks for looking... I fixed it and then put the site back into Coming Soon...
🙂
There is bracket missing in the code above... and it all works now.
July 29, 2020 at 11:46 pm in reply to: How to Hide Site Title and shift Header Menu to the left #500374NicB
ParticipantHere's the URL...
I'd like to remove the logo from the top left and position the header menu on the left to take its place.
NicB
ParticipantI have Dark Mode on in Edge and the black box is distinguishable...
But I wouldn't get too hung up on this... people tend not to notice the favicon.
Tech types tend to notice though - a more polished site will have one... and it's a giveaway if you see the default W.
NicB
ParticipantHave you got a link?
You could add a line around it...
NicB
ParticipantAre you using a PNG with transparency?
Provided the Favicon isn't the same colour as the active or inactive tab it should display OK regardless of the Light/Dark browser mode and the WordPress theme being used.
NicB
ParticipantSolved this thanks to the awesome people at StudioPress.
Locate the following code in the style.css - and add the 'display: none;' at the end as below:
.portfolio .filter { padding: 30px 0; padding: 3rem 0; background-color: #fff; box-shadow: 0 0 60px rgba(0,0,0,.1); position: relative; z-index: 99; text-align: center; display: none; }
And the menu is gone!
NicB
ParticipantThe code from Anita changes the 'portfolio' for individual pages perfectly.
🙂
Shame there's still the portfolio on this one though... http://www.thenantwichcomputerconsultant.co.uk/portfolio/
Any ideas for that?
NicB
ParticipantLooked at the code for the Portfolio Pro plugin and there's this bit...
genesis_add_option_filter( 'absint', GENESIS_CPT_ARCHIVE_SETTINGS_FIELD_PREFIX . 'portfolio', array( 'posts_per_page', )
Is that the one?
I guess I can change the 'portfolio' in that to something else.NicB
ParticipantSo I need to add some code to the functions.php file?
Something like this?
////* Rename Portfolio Slug add_action( 'init', 'rename_portfolio_custom_post_type_slug', 5 ); function rename_portfolio_custom_post_type_slug() { $args = get_post_type_object( 'portfolio' ); $args->rewrite['slug'] = 'nantwich-computer-services'; register_post_type( $args->name, $args ); } ////* End of Rename Portfolio Slug.
I lifted that from a Google search...
-
AuthorPosts