Forum Replies Created
-
AuthorPosts
-
itzsnider
Participantitzsnider
ParticipantThere 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.
itzsnider
ParticipantIs 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
itzsnider
ParticipantAre 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 #168051itzsnider
ParticipantNot too shabby, I am digging the purple!
itzsnider
ParticipantI would follow up with your host. It seems their SMTP server is generating an issue.
This won't be a Genesis issue.
itzsnider
ParticipantShikha,
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.
itzsnider
ParticipantLaura,
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
itzsnider
ParticipantMarlon,
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.
itzsnider
ParticipantThis was figured out.
itzsnider
ParticipantYour Site is still broken on IE9, searched as a client's site is doing the same thing in IE.
Although IE sucks.
itzsnider
ParticipantNow to put that only on single pages?
Hmmm everything is a learning item, LOVE THIS STUFF!!
itzsnider
ParticipantFor 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!!
itzsnider
ParticipantI added it to the bottom and it brings the site white. Must be missing something.
itzsnider
ParticipantWhat 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 #154992itzsnider
ParticipantJust 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.
itzsnider
ParticipantAnyone able to lend a hand here?
itzsnider
ParticipantSuper 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 #154876itzsnider
ParticipantI 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
itzsnider
ParticipantYou 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