rerartist
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Amadeus] Don't Want Header Image, how to close spaceI approached this from a different perspective, and the result works for me.
Because I designate only a 53px-high logo for the site branding area, I changed the padding (default padding: 60px, 0)* ==== CHANGE SITE BRANDING PADDING TO REDUCE SO MUCH SPACE AT TOP OF PAGE ==== */ .site-branding { padding: 20px 0 !important; }In my child theme, I had to use the !important rule in order to override the parent CSS.
I don’t believe a link to my client’s site is necessary here.
I hope this helps others. Thank you.Dear Mail Poet Staff:
I’ve given up on this issue and went with a different plugin that does NOT present problems with the editor interface. SOLA Newsletters is a snap by comparison.Forum: Plugins
In reply to: [Nifty Newsletters (Formerly Sola Newsletters)] Edit Registration Form?Not a problem. It’s really a very minor concern.
One feature I really really like is that a subscriber list can be manually edited – that definitely is a big plus!
Thanks JarrydThanks for looking into this.
Yes, the problem appears to be remedied, BUT there is another hitch that I can’t figure out….
As long as the first paragraph or so of the newsletter is visible, the little toolbar is visible. But if I try to add more content, two things happen:
1. I get to the bottom of the text window and pressing Enter/Return does not move the cursor – I must manually scroll the text up, making the toolbar disappear.
2. OR – If I have pasted content, I’m back to pretty much the same thing – the toolbar is not accessible and trying to scroll up to it de-selects the text I’m trying to work with.With HTML edits enabled, I can do it that way with tags.
Maybe making that toolbar float in the same way that the content/images/styles/themes box floats?
Again, thanks for all your help.
The same thing happens for me, too.
Version 2.6.12 and WP 4.0.
The video wasn’t helpful at all.
It’s easy to select text and make it bold, but by the time I can scroll down far enough to save changes, the text is no longer bold. It’s usually a rather long newsletter, so scrolling down moves the text out of the window. I haven’t tried it with italic yet.
At the moment, I’m looking at the possibility of changing it via HTML (settings), but in a long newsletter that could be a bit of a chore.
Thanks in advance for any insight(s).Forum: Plugins
In reply to: [Collapse-O-Matic] Conflict with Meteor Slides version 1.5.1I’m not experiencing that problem, at least not in my local development (XAMP).
I’m using WordPress 3.5.2, a Twenty-Twelve child theme, Collapse-O-Matic 1.5.3 for a “Resources” page, and Meteor Slides 1.5.1 on the home page. With local development, I can test a variety of things before implementing them on a live site.Forum: Hacks
In reply to: Change the default profile picture for users who don't have a GravatarI just stumbled onto this post, but hopefully a late reply is better than no reply at all.
This tutorial shows you how to create a gravatar in Photoshop, AND includes instructions for implementing it. NOTE – you should be using a Child Theme for all modifications. Besides the style.css, you will need to put a functions.php in your child theme directory.
Create Your Own Image to Change The Default Gravatar in WordPress
Forum: Plugins
In reply to: [Redirection] redirect sub folder to main domainThere’s a good chance that the index.php part of the URL means IIS (Windows) servers, not Linux. I’m having similar difficulties with developing wordpress for an e-commerce site, especially with htaccess vs web-config. You might wanna check.
Forum: Fixing WordPress
In reply to: Trying to remove page title appearing on the pageTo remove the comment box from a page…
In your Dashboard, select Pages > All Pages.
Hover over a page title and select ‘Quick Edit’
Uncheck “Allow Comments”, then click Update.
Do this for each page.I don’t know why that option isn’t available when you edit page content, but now you know.
Good luck!
Forum: Fixing WordPress
In reply to: Trying to remove page title appearing on the pagehmmm… sounds like you copied the parent 2012 style.css instead of creating a new one as suggested in the tutorials. For a child theme to work correctly, the style.css MUST be in the format explained in the tutorials, even if you choose to copy over the entire code from the parent style.css.
WPyogi suggested a link. If you still need help, that’s a good idea.
Forum: Fixing WordPress
In reply to: Trying to remove page title appearing on the pageAssuming you have activated your child theme, the style.css you see will be the one you created, and the first line of real code will be the @import url() line.
So make your changes/additions in this file AFTER the @import line.
Now what you can’t see, of course, is all the rest of the original 2012 style.css, so you might want to make a copy on your hard drive for reference when you want to change something else. You could call it style.2012.css or something like that so you’ll know what it is.
If you take time to explore and read about child themes, you’ll discover that you can create other files as well, such as a shortcodes.php, header.php or functions.php (DON’T copy 2012 functions.php – create an empty file functions.php and upload it to your child theme directory)
Forum: Fixing WordPress
In reply to: Trying to remove page title appearing on the pageI use 2012 theme pretty frequently.
First, set up a child theme. For child theme info:
WordPress Codex or TutsPlusNow go to Appearance > Editor, and select your style.css, and add one of the following css bits
/* Remove title from home page */ body.home .entry-header { display: none; } /* NOTE - If you want to remove the title on every page, change the above to: .entry-header { display: none; } */Forum: Plugins
In reply to: [WP Customer Reviews] Changing font size of the reviewerHello:
In a good text editor, Open wp-customer-reviews.css
Scroll down to the lines underneath /* hcard */
Change the font size in first line:
#wpcr_respond_1 .vcard (default is 10px – I set mine to 14px, same as the surrounding text)I also wanted to change the “by” preceding the reviewer’s name.
Open wp-customer-reviews.php
Go to line 737
See the “by” between the span tags?
I changed that to “submitted by:non-breaking space here“
(adding the non-breaking space creates a tad more room between the colon and the reviewer name)cheers!
Forum: Fixing WordPress
In reply to: Different header image for different pagesA child theme is ALWAYS a smart idea.
That said, read this WP support thread : Twenty Eleven different header image per page
There are several options in this thread, but one you may find useful is the reply suggesting the Image Widget plugin
(I have not personally tried the Image Widget plugin)
Hope this helps.
Forum: Themes and Templates
In reply to: Twenty Twelve Remove Leave A Reply From TemplatesMany thanks paulwp.
You pointed me in the right direction.