Damon Cook
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Logo pixelated/blurred in chromeHi michalszulc,
I’m not experiencing blurry or pixelated logo in Chrome 49.0.2623.110 (64-bit). Here is a screenshot of what I’m seeing: https://www.dropbox.com/s/jzvbkjg1w6c4lal/Screenshot%202016-04-04%2009.28.56.png?dl=0Let us know if you’re still experiencing or perhaps you already fixed?
Forum: Fixing WordPress
In reply to: Logo pixelated/blurred in chromeHi michalszulc,
I’m not experiencing blurry or pixelated logo in Chrome 49.0.2623.110 (64-bit). Here is a screenshot of what I’m seeing: https://www.dropbox.com/s/jzvbkjg1w6c4lal/Screenshot%202016-04-04%2009.28.56.png?dl=0Let us know if you’re still experiencing or perhaps you already fixed?
Forum: Fixing WordPress
In reply to: Adding numbered pagination to the themeThis forum is for free themes, and I would encourage you to follow up with the paid theme’s author directly at their site: https://www.mhthemes.com/support/
Sorry, don’t know why I didn’t suggest that in the first place and somehow I overlooked the fact that you mentioned a paid theme.
Forum: Fixing WordPress
In reply to: embed youtube on iphoneHi fittwotravel,
Can you post a link to an example on your site please for further debugging of the issue?Also, are you using native www.ads-software.com oembed Youtube link when posting your videos? Or a custom plugin to post the videos? This will also help us troubleshoot what might be happening.
Thanks!
Forum: Fixing WordPress
In reply to: custom add images section (Pages & Posts)You would need some custom fields for user to assign/input images, and then displayed. I recommend trying Advanced Custom Fields plugin, and either the Image or File upload Field Type: https://codex.www.ads-software.com/Custom_Fields
Forum: Fixing WordPress
In reply to: Adding numbered pagination to the themeHi speterh,
I’m not intimately familiar with this theme, and just clicked to checkout the demo and noticed that there is numbered pagination links on Category archive pages: https://demo.mh-themes.com/newsdesk/category/sport/Screenshot: https://www.dropbox.com/s/4atyw0138iuh8ok/Screenshot%202016-03-14%2010.31.18.png?dl=0
Is there a different area of the site/theme that you’re trying to get pagination to display?
Forum: Fixing WordPress
In reply to: Chaning Portfolio PermalinkHi ithappens!
It sounds like you’re using the Jetpack plugin’s Portfolio (custom post type) module? If so, then you’re not able to modify the portfolio (custom post type) Permalink structure.I would recommend try using something like an Image Widget plugin, and put widgets in your designated header area Sidebar. Again, I’m assuming you have this? If not please report back, and happy to help further.
Here is an Image Widget plugin: https://www.ads-software.com/plugins/simple-image-widget/screenshots/
“transparent header section also needs to be an solid white?”
Right now, the CSS for the header is this:
#header { background-color: rgba(255, 255, 255, 0.7); }
you’ll need to make the background color rgba value non-opaque. This should do it:
#header { background-color: rgba(255, 255, 255, 1.0); }
Depending on how you apply the above CSS you may need to add in !important to truly make the change override the default code. So you may need to do this if above does not work:
#header { background-color: rgba(255, 255, 255, 1.0) !important; }
In order to center the logo, here is the CSS:
#header .logo { text-align: center; } #header .logo img { float: none; margin: 15px 0 10px 0; } #header .logo span { position: absolute; right: 0; }
“the logo automatically has a white background to it even though I upload it as a .png with no background.” I’m not seeing this issue, and wonder if you may have already resolved?
Hope this helps!
Forum: Fixing WordPress
In reply to: resize youtube videosHi saifprvz, can you explain a bit more about what you mean by resizing? For example, when I think of resizing something I think of resizing my browser size, e.g. grabbing Chrome’s bottom, right-hand corner and squishing vertically or horizontally, or both.
With the above given example, I don’t think you can actually resize a Youtube video per se.
Are you looking to allow the option for the Youtube video to go full-screen? If so, this might help: https://developers.google.com/youtube/player_parameters#fs?
I’m wondering if perhaps you’re looking to make your videos responsive, and that is what you mean by resizing? If so, then this might help? https://embedresponsively.com/
Please let me know, and happy to help further.
Forum: Plugins
In reply to: [WP Post Styling] QuotesI totally support security as a priority. I would advise updating plugin FAQ or details to warn users that there is no support for certain characters.
Thanks!
Forum: Plugins
In reply to: [WP Post Styling] QuotesI’m having the same issue, and believe it is related to output sanitization, e.g.
$this_post_styles = esc_html( stripcslashes( jd_post_style_data($this_post_styles,'css') ) );
I’m not sure how to mitigate though.
Lack of quote support makes it hard to work with custom Google Fonts, e.g.
font-family: 'Gentium Book Basic', serif;
Please advise.
Forum: Fixing WordPress
In reply to: Inline SVG in Custom WalkerThanks rbgiddings!
I’m trying to steer clear of icon fonts, because they’re not rendered as consistently and was having issues with Font Awesome specifically.
Inline SVG is way to go, and I forgot that you can actually add HTML to the Navigation Label as you demonstrate in your post. Thanks, and that is a big help!
Also, @gregrickaby wrote a helpful template function to allow you to easily add in themes if you’re interested: https://github.com/WebDevStudios/_s/blob/svg/inc/template-tags.php#L270
Forum: Fixing WordPress
In reply to: Inline SVG in Custom WalkerAlicia, I would love to see what you came up with for a custom walker in this regard. Did you end up finding a workable solution? Care to share please (blog article, or Gist)?
Forum: Plugins
In reply to: [Facebook] Set data-width for comments to 100% for Responsive layouts+1 for sure!
Also, see: https://www.ads-software.com/support/topic/comments-width-1
Forum: Plugins
In reply to: [Facebook] Comments Width+1 feature please