zeaks
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Logo is blurryUsually when the logo is blurry it’s because the image is stretched. Check what size log is required, then use an image that fits those dimensions. About all I can say without more info.
Forum: Plugins
In reply to: [Basic Comment Quicktags] Not showing unless logged inYeah, it was this plugin causing the issue https://wordpress.org/plugins/stop-spammer-registrations-plugin/ it’s working fine after disabling it.
It might add something to the comment form when not logged in that conflicts with your plugin.Forum: Themes and Templates
In reply to: [Clean Retina] Why is this child theme not working!???Did you upload the parent theme through file manager/ftp or did you install it from Appearance > themes > add new? If you uploaded it yourself, check to make sure the parent theme isn’t in a double folder or anything like that.
Your child theme code looked fine so I tried it and it works for me.
Forum: Themes and Templates
In reply to: Featured WordPress site? bata.comLooks like a custom theme made by http://www.procab.ch/accueil/ according to their stylesheet
Forum: Themes and Templates
In reply to: Trouble with add image sizeHad a typo in the thumbnail call >.<
Thanks for this function, just what i was looking for. In my case I wanted 4 related posts to show, that reduced the image size but not the div size.
Anyone else wanting to adjust it can use
div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post { width: 24% !important; }in their stylesheet, adjust 24% to whatever you like.
IE, Chrome and FireFox. I can’t figure out why, new windows install, browsers are updated, extensions removed.
This is a problem on my end with my browser or something, the icons seem to be showing for everyone else. font-face isn’t showing for any of my browsers on any site.
Thanks for the reply.
Forum: Themes and Templates
In reply to: help making footer widgets responsiveClearing them and changing width to 100% should make them display one on top of the other on mobile. Make sure to use @media to target smaller devices. Here’s an example
@media only screen and (max-device-width: 480px) { #footerwidget { width: 100%; clear: both; } }Something like that
@travern I think the link was an old forum post, the forums were moved. Check this article out http://zeaks.org/2013/use-genericons-with-twenty-twelve-theme it shows how to go about editing the meta info.
You basically have to copy the function from Twenty Twelve then add it to your child theme then change the info however you want. The article shows how to add classes to it and icons.
Forum: Plugins
In reply to: [Recent Comments with Gravatar] Comment Gravatars not showingIgnore this, with Jetpack and social logins it’s not showing the gravatar, nothing wrong with this plugin.
I’d be interested in this as well. ATM I’m using a custom plugin for syntax highlighting. I’d love to use 1 plugin for site, comments and forums though.
Forum: Themes and Templates
In reply to: Twenty Twelve style regular menu onlyAnything inside the @media brackets will be shown for desktop, anything without @media is shown on mobile.
Here’s an example..
This should make the menu link color red on desktop, but not affect the mobile menu.
@media screen and (min-width: 600px) { #access a { color: red; } <-- Normal CSS closing bracket } <-- closing bracket for @mediaIf we used this, it would change the color for both mobile menu and regular desktop menu.
#access a { color: red; }So, if you just want to change the regular desktop view menu and not the mobile menu, add your CSS between this..
@media screen and (min-width: 600px) { Regular CSS here } <-- don't forget the closing bracker for @mediaTwenty Twelve was made for mobile first, then using @media conditionals it was made to fit desktop screen sizes. It’s confusing at first, once you understand what it’s doing, it’s pretty easy to figure out.
Just figured out a way around this.
In child themes the mobile theme doesn’t want to use the menu.Set your site to use the parent theme Twenty Twelve, activate the menu you want to display, then re-activate your child theme and the menu should show.
Anytime you add new menus, you’ll have to switch back to Twenty Twelve, add the new links, then switch back.