Forum Replies Created
-
AuthorPosts
-
itzsniderParticipantitzsniderParticipant
There are some themes that require the front page to be set specifically.
If you want to PM me login info I can take a look around. Looking from the outside won't help much at this point.
Outside of cacheing I would need to see behind the scenes.
Hope you get it fixed.
itzsniderParticipantIs this still an issue?
It looks like the footer is working fine for me.
Also, in the future, it's not the best option to utilize Jetpack for CSS tweaks. I would move all of those to the child theme style.css file and go from there.
Then disable Jetpacks functionality around CSS editing.
my two cents
itzsniderParticipantAre these your defaults?
http://glui.me/?i=a9d0vyaurv4kqgt/2015-10-13_at_2.08_PM.png/
This is under Settings -> Reading
October 13, 2015 at 12:05 pm in reply to: Author website using Altitude Pro + Genesis Author Pro Plugin #168051itzsniderParticipantNot too shabby, I am digging the purple!
itzsniderParticipantI would follow up with your host. It seems their SMTP server is generating an issue.
This won't be a Genesis issue.
itzsniderParticipantShikha,
The first ask is to make your menu item on one line. This drives me nuts as well.
What you can do is utilize the developer tools of your browser and either
1. make that menu "wider" or
2. make the font-size or font-spacing smallerFor the second task that again is something you can utilize your dev tools to grab.
Once you have located the correct CSS properties, you can align them as needed.
Hope that helps a tad.
itzsniderParticipantLaura,
It looks like this has been resolved, can you validate?
If not the obvious question would be is it activated? Under Appearance -> Themes -> Hover over your theme and click Activate.
Hope that helps
itzsniderParticipantMarlon,
Why are you calling two style sheets may I ask? That just adds more time for the server to read through code etc?
Just asking is all.
itzsniderParticipantThis was figured out.
itzsniderParticipantYour Site is still broken on IE9, searched as a client's site is doing the same thing in IE.
Although IE sucks.
itzsniderParticipantNow to put that only on single pages?
Hmmm everything is a learning item, LOVE THIS STUFF!!
itzsniderParticipantFor some reason this needs to be the last code
/* Helps to remove ? content for pageload function _remove_script_version( $src ){ $parts = explode( '?ver', $src ); return $parts[0]; } add_filter( 'script_loader_src', '_remove_script_version', 15, 1 ); add_filter( 'style_loader_src', '_remove_script_version', 15, 1 );
It now works, now to style it and remove tags from showing!!
Thanks Brad!!
itzsniderParticipantI added it to the bottom and it brings the site white. Must be missing something.
itzsniderParticipantWhat am I missing here?
My whole Functions.php is here - http://pastebin.com/yQhnLC3J
I removed this code
//* Customize the post meta function add_filter( 'genesis_post_meta', 'sp_post_meta_filter' ); function sp_post_meta_filter($post_meta) { if ( !is_page() ) { $post_meta = '[post_categories before="Filed Under: "] [post_tags before="Tagged: "]'; return $post_meta; }}
and then I added this code
remove_action( 'genesis_entry_footer', 'genesis_post_meta' ); add_action( 'genesis_after_header', 'genesis_post_meta' );
then it broke my site.... must be missing something small
June 5, 2015 at 10:06 am in reply to: Enlarged logo area now covering menu in Pretty Chic child theme #154992itzsniderParticipantJust add
padding-top: 42px;
like so
.nav-primary { background: #fff; border: 1px solid #aba9a9; margin: 0 0 35px auto; max-width: 960px; padding-top: 42px; width: 100%; }
I would also look at it in mobile to make sure it works.
Also if the developer doesn't support CSS, not sure what they do. Hit me up if you need more help.
itzsniderParticipantAnyone able to lend a hand here?
itzsniderParticipantSuper sexy,I love it!
June 4, 2015 at 1:06 pm in reply to: Google page speed recommends gzip, but WP Supercache is already installed #154876itzsniderParticipantI am from Towson, MD!!!
Anyway, had to shout out to a fellow Baltimoron!!
I would honestly use the W3 Tital Cache plyugin found here - https://wordpress.org/plugins/w3-total-cache/
I would use this over anything, OR switch to a host that offers it for you, mine - Flywheel does all of that for me behind the scenes. NO need for plugins.
Good luck
itzsniderParticipantYou would need to edit the following to make the font smaller
.archive-title { font-size: 20px; margin-bottom: 24px; }
And then add a float:right; condition or text-alight:right; condition to make it go to the right if i am following what you want.
-
AuthorPosts