Nick C
Forum Replies Created
-
Forum: Plugins
In reply to: [Genesis Responsive Slider] Not showing title and content on mobileHi, @dori83!
It’s a little more complex with Executive Pro because you also need to reposition the excerpt area so the content still fits at mobile screen sizes. You could try this at the bottom of your custom CSS as a starting point:
@media only screen and (max-width: 1023px) { .content #genesis-responsive-slider .slide-excerpt { background-color: #556270; background-color: rgba(85, 98, 112, 0.8); display: block; height: 60%; width: 100%; overflow: auto; font-size: 13px; padding: 3% 3% 0; bottom: 0; top: auto; } .content .genesis_responsive_slider h2, .content .genesis_responsive_slider h2 a { font-size: 20px; } } @media only screen and (max-width: 801px) { .content #genesis-responsive-slider .slide-excerpt { height: 100%; } .content #genesis-responsive-slider .slide-excerpt p { margin-bottom: 10px; } .content .genesis_responsive_slider p a { margin-top: 6px; } }Forum: Plugins
In reply to: [Simple Social Icons] How to use with CDNIf your CDN plugin or service allows you to exclude certain files from being served from the CDN, that is worth doing to resolve the issue you’re seeing in Chrome.
You’d need to add an exclude rule for the
symbol-defs.svgfile so that it loads from the same domain as your page, instead of from the your cdn subdomain.Once this Chrome bug is resolved, you could then load the icons from the CDN again.
Forum: Plugins
In reply to: [Simple Social Icons] Pulling images when sharing to TwitterHi, @sarahseestheworld!
Have you set up Twitter Cards for your site?
If not, you can use a plugin such as this one: https://wordpress.org/plugins/twitter-cards/
Once you’ve installed and activated that plugin, follow steps three and four from twitter’s guide here: https://dev.twitter.com/cards/overview#get-started-in-4-simple-steps
As long as your posts have featured images, you should then start to see them as part of twitter’s card format whenever you use the Simple Share button to share a link to your content. (It’s also worth knowing that Twitter cards are supported on their website and their apps, but may not appear in other third-party twitter apps.)
- This reply was modified 9 years, 2 months ago by Nick C.
Forum: Plugins
In reply to: [Simple Social Icons] round/circle look icons?Hi, @alittlereddress!
An icon size of 20px with a border radius of 10px or more should give you round icons.
It’s possible a theme or plugin is conflicting with the CSS. You could try:
– Resaving your widget settings and clearing any caching plugins.
– Disabling other plugins.
– Sharing a link to the page where your icons appear – I’d be happy to take a closer look.Forum: Plugins
In reply to: [Genesis Responsive Slider] Not showing title and content on mobileGreat! Glad that helped.
If you’re a StudioPress customer, there’s a list of community resources here should you need extra help with your other planned custom theme alterations: https://my.studiopress.com/community/
Forum: Plugins
In reply to: [Genesis Responsive Slider] Not showing title and content on mobile@caghaedul001 You’re welcome!
It doesn’t matter where the code goes in this particular case. You could place it after your existing slider code:
Forum: Plugins
In reply to: [Genesis Responsive Slider] Not showing title and content on mobile@caghaedul001 Thanks! You can force the slider title and excerpt to appear at mobile widths by placing this in your theme’s stylesheet:
.slides .slide-excerpt { display: block !important }Forum: Plugins
In reply to: [Genesis Responsive Slider] Not showing title and content on mobile@caghaedul001 Please can you link to your site?
Forum: Plugins
In reply to: [Simple Social Icons] Blank icons sometimes@sunhawk You’re welcome! Glad to hear you were able to fix things up.
Forum: Plugins
In reply to: [Simple Social Icons] Blank icons sometimesHi, @thisiskrisjoy!
The text widget above your Simple Social Icons widget is missing a closing
</a>tag. You have this:<a href="http://thisiskrisjoy.com/"><img src="http://thisiskrisjoy.com/wp-content/uploads/2017/01/IMG_6037.jpg" alt="" width="1693" height="2038" class="alignnone size-full wp-image-2920"/>Which should be this:
<a href="http://thisiskrisjoy.com/"><img src="http://thisiskrisjoy.com/wp-content/uploads/2017/01/IMG_6037.jpg" alt="" width="1693" height="2038" class="alignnone size-full wp-image-2920"/></a>I would try fixing that first to see if it solves things for you.
Forum: Plugins
In reply to: [Genesis Responsive Slider] Does not work in RTL languages?Hi, @sa3idho.
You’re right that RTL support isn’t currently built in, I’m sorry to say. For now, you could add this CSS to your theme’s style.css file, which will help the images to display:
.rtl #genesis-responsive-slider .flexslider { direction: ltr; } .rtl .genesis_responsive_slider .slide-excerpt, .rtl .genesis_responsive_slider .slide-excerpt-border { direction: rtl; }This may require further adjustment depending on your current slider settings, but I hope it’s helpful as a starting point.
Forum: Plugins
In reply to: [Genesis Simple Hooks] Will this ever support HTML5Thanks for explaining that, Ash – I do see how it would be helpful. No promises, but I’ve passed on your request!
Forum: Plugins
In reply to: [Genesis Connect for WooCommerce] call to undefined functionGreat detective work, @minikreations! Thank you for mentioning Jetpack Mobile – it might help others who stumble on this thread.
Forum: Plugins
In reply to: [Genesis Responsive Slider] Remove title link to postGreat! Thanks for sharing your solution, @srower.
Forum: Plugins
In reply to: [Simple Social Icons] Unsafe attempt to load URL svgHi, @masadmin.
I see your icons in Firefox (right) but not Chrome (left):
Your CORS setup looks good to me. There’s a Chrome bug that can cause SVGs to fail to load even with CORS in place, but the plugin includes some code that attempts to work around this (it requests the file via AJAX as well as using a regular request); I’m not yet sure why that isn’t working for your site.
If you’re able to adjust your server/WordPress configuration to serve the icon file from the same domain as the blog page (
www.nuglowskincare.com), that will solve this for you.