Deborah Delin
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Coraline] Font SizeFood for thought. Thanks so much. The site looks so ugly with larger text! I’ll have to look into this further.
Forum: Themes and Templates
In reply to: [Coraline] Font SizeI see. Thank you. Compared to what you are used to seeing on those screens, does the text seem too small or OK?
Forum: Themes and Templates
In reply to: [Coraline] Font SizeOh!! I hadn’t picked up on that!! In my text editor the font size is set in pt and not px. How strange!!
I tried this code I found to change the tinyMice editor to use px, in functions.php, but it didn’t work for me:
function customize_text_sizes($initArray){ $initArray['theme_advanced_font_sizes'] = "10px,11px,12px,13px,14px,15px,16px,17px,18px,19px,20px,21px,22px,23px,24px,25px,26px,27px,28px,29px,30px,32px,48px"; return $initArray; } // Assigns customize_text_sizes() to "tiny_mce_before_init" filter add_filter('tiny_mce_before_init', 'customize_text_sizes');
If anyone has an idea as to how I can change the editor to use px instead of pt I would be very grateful.
Thank you Janet and Kathryn for helping me understand. Now at least I can have my font set at 10px. Actually I’ve set the home page at 11px and I really like it but I’d love your opinions as to whether it’s too small as Janet mentioned using 16px which sounds huge!
Forum: Plugins
In reply to: [Testimonials Widget] Changing Font Stops RotationThanks for replying! That’s so weird! The code you suggested also caused it to become static. And it seems not to like the Arial font!
So I’ve found a workaround and used a font which looks similar to Arial. I was unable to to fix it via CSS in the editor. But when I used the Use any Font plugin and specified:
.testimonials-widget-testimonial blockquote,
.testimonials-widget-testimonial div.creditas you suggested, it worked. Thanks so much for your help!
Forum: Plugins
In reply to: [Testimonials Widget] Unable to Change Selection LimitThank you! I had missed that.
Thank you!!!
OK, I see! It is in All in One Settings>Tag Title>%tag% | %blog_title%
What is “blog title”? Is is Site Title?
Forum: Themes and Templates
In reply to: Add HTML5 VideoAny reply gratefully received! Is it possible that I am not able to use the html file as I thought?
Thank you!!!
Forum: Themes and Templates
In reply to: Position of Recent Posts WidgetYou are my hero!!!!!
I finally got it to budge!
Thank you so very much!!!!!
Forum: Plugins
In reply to: [Plugin:All-in-one SEO Pack] No Meta info on Home PageOops! I just realised that you have to set the Home Page keywords in teh SEO pack settings. I missed that! I hope that doesn’t mean I’ve missed out on valuable SEO opportunities!
Deborah
Forum: Themes and Templates
In reply to: Unable to Upgrade WordPressSo I’m completely stuck. My server says the problem is with WordPress. They tried to fix a faulty file but that didn’t help.
I am unable to update plugins too.
Please, please, can somebody suggest something?
Forum: Fixing WordPress
In reply to: Wrong Thumbnail DisplayingOK, so it wasn’t because of the featured image.
This is what I think helped: The image you want to be displayed must be large. The recommendation of the Facebook Open Graph Meta Tags plugin is 1200 x 630.
Then I de-bugged my Facebook page here: https://developers.facebook.com/tools/debug
and the yearned for image displayed!
I’m happy!
Forum: Fixing WordPress
In reply to: Wrong Thumbnail DisplayingI have discovered that any pages which once had a featured image set, even though it is now removed, don’t show the specified image.
Other pages, such as this one, show the specified image:
(Whether that is because it is the header or because I have set that as the default image in the Facebook Open Graph Meta Tags plugin, I don’t know.)
Maybe that gives some clever person a hint?
In the source code of the home page the meta directs it to the right picture:
<meta property=”og:image” content=”https://www.photomobil.co.il/wp-content/uploads/2013/11/large-pic-for-thumbnail.jpg” />I would be SO grateful of a suggestion.
Thank you
Deborah
Forum: Plugins
In reply to: [Widget Logic] !is_page Works – then Doesn't!I have no idea what I did, but everything is working now! :-))
Forum: Themes and Templates
In reply to: Adding a Secondary Menu to a PageTo precis my problem – why doesn’t the following work in my child functions.php?
<?php /* adding second menu to child theme */ register_nav_menus( array( 'primary' => __( 'Primary Menu', 'coraline-child' ), 'secondary' => __( 'Secondary Menu', 'coraline-child'), ) ); // second menu location if ( is_page('60') ) { if ( has_nav_menu( 'secondary' ) ) { wp_nav_menu( array( 'theme_location' => 'secondary' ) ); } } ?>
Thank you for any assistance!!