joelymil
Forum Replies Created
-
Forum: Plugins
In reply to: [AddToAny Share Buttons] Site doesn't load custom iconsThank you for the info.
But I don’t want to switch to the Facebook share button, I want it to be a Like button. So you’re saying there’s no way to change the look of the Like button?
Thanks again.
Forum: Plugins
In reply to: [AddToAny Share Buttons] Site doesn't load custom iconsHaving the exact same issue on my site with my like button at the bottom of posts.
facebook_like.png uploaded to directory and directory URL pasted on plugin setting page. Default image still displays.
http://rejectpile.com/the-nevervending-story/
thanks in advance.
Forum: Themes and Templates
In reply to: [Make] How to Create a Recurring "Column"Yeah, I figured that would be the case. Just wanted to confirm in case someone had a solution I hadn’t thought of.
Thanks for your help!
Forum: Themes and Templates
In reply to: [Make] How to Create a Recurring "Column"Thanks for your response, Melissa. I figured that would have to be the way to do it, but alas, my coding skills don’t extend much beyond HTML and CSS.
Two php-free solutions I’ve been exploring are the Pods plugin and WP-Types/Views plugins. Just to pick your brain, do you have any experience with/knowledge of either of those plugins and if I’d be able to accomplish something like this with either?
I was hopeful about Pods, but it’s ‘templates’ don’t appear to be able to insert content above the post title, only before the post content. So I’ve all but ruled it out.
WP-Types/Views seems promising, though. Are you much familiar with it?
Thanks again.
Thank you. Spam seems to have been the issue. I’ve created the filter recommended in your article. To do so, I created a new GA view, is there a way to change the default GA view in the plugin? Can’t seem to find instructions on that on your site or other threads.
Thank you.
Forum: Themes and Templates
In reply to: [Fifteen] I have a border that I cannot changeGreat! You’re welcome.
Forum: Themes and Templates
In reply to: [Fifteen] I have a border that I cannot changeOk, so now what I’m seeing is a grey “border” around the entire yellow content section of your pages. It’s not actually a border, but the background color of a containing div. Is that what you’re trying to remove?
If so, this code should make it the same yellow color as the rest of that space:
.single #content, .page #content { background: #CFA433; }Forum: Themes and Templates
In reply to: [Fifteen] I have a border that I cannot changeIt looks like you’ve switched to a new theme now. Has that resolved the issue for you?
Forum: Themes and Templates
In reply to: [Theme Coraline] Background color of a captioned imageExcellent! You’re welcome.
Forum: Themes and Templates
In reply to: [Theme Coraline] Background color of a captioned imageWhat browser are you using? I’ve viewed it in Chrome, Firefox and Safari, all of which seems to be applying the changes fine – I’m seeing a green background, no white box.
Forum: Themes and Templates
In reply to: [Fifteen] I have a border that I cannot changeIt looks like the following two rules are coming from your Custom CSS. I’ve commented beside which lines you’ll need to remove or comment out if you want no border at all. (They appear to be on lines 43 and 76, respectively.)
#secondary .widget { background: #FFE1DE; border-radius: 10px; border: 7px solid #05EDFF; /* remove/comment out this line */ }#primary { background: #FFE1DE ; border: 7px solid #05EDFF; /* remove/comment out this line */ border-radius: 10px; }Forum: Themes and Templates
In reply to: Remove Posts/archives side sectionHi TheB741,
It looks like you’re using a Premium theme, so you’ll want to contact ElegantThemes directly with any theme-related support questions you have. These forums are only for supporting freely available Themes, Plugins, etc.
Forum: Themes and Templates
In reply to: [Hueman] Site Image Maximum Height.You’re welcome! Glad to hear.
Forum: Themes and Templates
In reply to: Question About Fixing A Link In ThemeCurrently, when I click the link it takes me to the Facebook homepage/NewsFeed. When I searched Facebook for “msdlawaz” I found this page:
https://www.facebook.com/msdlawaz25
Is that the page you’re trying to link to? If so, try using that link in place of the longer one currently used for the Facebook logo link on your site.
Forum: Themes and Templates
In reply to: [Fifteen] Removing outline of the image on postYou can use this CSS to set the border around the image on your posts:
.wp-caption { border: 1px solid #ccc; }The “#ccc” is the color value – if you want to keep the border and change the color, adjust this value to your liking. If you want to remove the border altogether, use a value of “none” in place of all three values, like this:
.wp-caption { border: none; }