jtonline
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hueman] Show image captions on mobilesI’ve figured it out. I added –
@media only screen and (max-width: 719px) { .image-caption { display: block; }
to styles.css in my child theme and that seems to have done the trick.
I’m sure I tried that earlier in the day without success :-/
Forum: Plugins
In reply to: [JP Sharing] No vertical scrollbar on Google new window in IE11I’ve managed to fix it I think. I surprise myself sometimes ??
I changed line 889 of sharing-sources.php to lengthen the window, add scrollbars and turn off menu & tool bars.
$this->js_dialog( google-plus-1, array( width => 480, height => 700, scrollbars => yes, menubar => no, toolbar => no ) );
The header image you’re using on hollanderrealty is cropped-hollanderheader11.png at 1440 x 150px. That site looks fine on my laptop computer, however the header image is actually being cropped on the ends, it just doesn’t notice. (Your head & shoulders photo is close to the left margin, but on the original image there is more of the blue line to the left.)
The header image you’re using on professorreslestate is cropped-profresh-header.png at 1440 x 325px. If you compare the two original images, apart from the difference in height, there isn’t as much white space at either end of the second one, so I think you’ll need to redesign it along the lines of the first one to allow for some cropping in the browser.
Unless Richie knows otherwise of course ??
Forum: Themes and Templates
In reply to: [MesoColumn] empty search lead to blank pagesThat’s not normal theme behaviour Eugenio. You should get the ‘No results found!’ page.
Have you tried deactivating any of your plugins to see if one or more of them is causing the problem?
Forum: Themes and Templates
In reply to: [MesoColumn] Featured image not show in the PostSet a featured image and then use the Add Media button at the top of the WordPress editor window to add the same image into the content of your post from your media library.
Or, if you don’t set a featured image yourself, the MesoColumn theme will simply use the very first image in the post as the featured image.
Forum: Plugins
In reply to: [JP Sharing] How do I remove underlining from button text links?I’ve resolved my own question ??
In sharing.css
/* Base Button .sd-button */
div.sharedaddy a.sd-button {I had to append !important to the existing text-decoration property.
Forum: Themes and Templates
In reply to: [MesoColumn] How to remove shade from top navigationSetting a background colour (white will do) under Appearance | Background will remove the shadow effect from the top navigation menu.
Forum: Themes and Templates
In reply to: [MesoColumn] My website does not fit in 1900×600 size displaysForum: Themes and Templates
In reply to: [MesoColumn] discussion/commentUnder Theme Options | General there’s an option ‘Enable Comments Close Notice’ just set that to Disabled.
Forum: Themes and Templates
In reply to: [MesoColumn] Social iconsTake a look at the theme author’s plugin called Social Jet, here:
https://www.dezzain.com/wordpress-plugins/social-jet/Forum: Themes and Templates
In reply to: [MesoColumn] Hide image in page on certain postJust use the ‘Set Featured Image’ option when writing the Post (bottom of right-hand column of Add New Post screen).
Featured images appear on home and category page but not in the post. If no featured image is set, the home and category page will display the first image found inside the post.
Forum: Plugins
In reply to: Search Everything – highlights also in links!I’ve just downloaded Search Everything & discovered the issue of garbled post titles on my results page when searched for word/s are in the post title & highlighting is turned on in the plugin.
To fix this behaviour I suggest you check the search.php file for your chosen theme. Mine was using:
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a>
to output the post titles in the search results.
I changed it to:
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>
That subtle change fixed the problem on my site.
Forum: Fixing WordPress
In reply to: Exclude tags from the_category_rss() ?tclarr,
Apologies for not acknowledging your reply until now. For some reason I neglected to subscribe to this topic and so didn’t get notified of any replies!
I commented out the If statement in feed.php as you suggested, which has had the desired effect. I haven’t noticed any ill effects anywhere yet. Now when I look at the feed results in IE8 the ‘Filter by Category’ option just includes the post categories and not all the tags as well.
Many thanks for your help.
Forum: Fixing WordPress
In reply to: Strange “|” appeared in site tabThis appears to be as a result of the settings within the All In One SEO Pack plugin that your site uses.
Forum: Fixing WordPress
In reply to: FULL posts in catagoriesI think the majority of themes work by showing the full post content and then show the comments and comment form once the user clicks the title of the post. However, I think the following support forum post covers the layout that you’re after…