Justin Hemker
Forum Replies Created
-
Forum: Plugins
In reply to: [Home Value] Zapier Integration Shortfall?That is what we’re currently doing (email parser), it’s just not the best way to do it and involves about 12 more unnecessary steps that non-techie users will have a hard time configuring. Simply adding the address to the webhook payload would be ideal.
Not sure if this will help, Coppermill, but I found this: https://givewp.com/documentation/resources/translating-give/
+1
I would really like to set-up a form in a second language/currency.
Body Text
.entry-content { color: #000; }
Date and Name
.entry-meta a{ color: #000; }
Looking at this post https://bluebirdgreen.com/diy-beginner-sew-tea-towel-apron/ your name appears to be the same blue/green color as the other comment author’s names. Maybe it is a browser cache issue?
Links
.entry-content a { color: #000; }
Links on hover
.entry-content a:hover { color: #000; }
Links visited
.entry-content a:visited { color: #000; }
Just change the colors to suit your needs! ??
Cheers!
Forum: Themes and Templates
In reply to: [Vortex] Extending Side Bar WidthHey Brandon, sorry, I had Ad Blocker turned on. Add this code to your custom css (in addition to what was already added):
#sidebar .widget { width:300px; } #sidebar { padding-left:0; }
Tag hover css:
.tags-links a:hover { background-color: #000; } .tags-links a:hover:after { background-color: #000; }
Button hover css:
button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover { background-color: #000; }
Comment author css:
.comment-author { color: #000; }
Post title css:
.entry-title { color: #000; }
Forum: Themes and Templates
In reply to: [Vortex] Extending Side Bar WidthI’m not sure this is a styling issue. I’m not seeing any ads in the sidebar but I can see the Adsense code and it appears to look ok to me. How long has it been since you applied for an Adsense account? Ads will not immediately appear. They have an approval process that could take a number of days.
Add this css to take care of the brown above posts:
.entry-format, .hentry:before { background: #6f9d9f; } .hentry:after { border-top: 8px solid #6f9d9f; }
If you want ALL links to appear in the blue/green color add:
a { color: #6f9d9f; }
If you want just the widget area links blue/green add:
.widget-area a { color: #6f9d9f; }
For the thick brown line in your header add:
.site-branding:after { border-top: 8px solid #6f9d9f; }
Too see the css that is being applied you can right-click on the element and select ‘Inspect Element’ and your browser will show you what is being used.
Forum: Themes and Templates
In reply to: [Baskerville] Substitute theme fontsThe fonts are called in via links in the <head> section. They are loaded directly from the Google Font repository. Look for:
<link rel="stylesheet" id="baskerville_googleFonts-css" href="//fonts.googleapis.com/css?family=Roboto+Slab%3A400%2C700%7CRoboto%3A400%2C400italic%2C700%2C700italic%2C300%7CPacifico%3A400&ver=3.9.1" type="text/css" media="all">
and
<link rel="stylesheet" id="open-sans-css" href="//fonts.googleapis.com/css?family=Open+Sans%3A300italic%2C400italic%2C600italic%2C300%2C400%2C600&subset=latin%2Clatin-ext&ver=3.9.1" type="text/css" media="all">
You really should read up on how child themes work. The whole point of them allows you to make changes to a theme while still allowing themes to be updated without losing your modifications.
Forum: Themes and Templates
In reply to: CSS problem – First letter paragraphOk, the problem lies in that your picture captions above the pictures are still simple paragraphs. You have a couple of options:
1)Apply a class only to the paragraphs where you want the first-letter styling and change the css selector to target the class.
2)Change the upper captions from <p> to <span> (or a heading) and apply styling to center the text over the image.
There are a number of other options but these two are probably some of the easiest…
I would also advise against using tables as you have on these pages but that is beyond the scope of your question.
Forum: Themes and Templates
In reply to: [Pictorico] Disabling and eliminating "leave feedback"The easy option if you don’t want to create a child theme, etc. is to add custom css like:
#comments { display:none; )
For a more thorough answer or alternate solutions provide your URL so we can take a look.
Forum: Themes and Templates
In reply to: [Baskerville] Substitute theme fontsCreate a child theme and make your adjustments in the child theme style.css. When the parent theme (Baskerville) is updated you will not lose changes.
Try adding something like this to your child theme functions.php:
add_filter('tc_fp_single_display', 'add_title_link', 20, 6); function add_title_link($html, $fp_single_id, $show_img, $fp_img, $featured_page_link, $featured_page_title){ $link = '<a href="'.$featured_page_link.'">'.$featured_page_title.'</a>'; return str_replace('<h2>'.$featured_page_title.'</h2>', '<h2>'.$link.'</h2>',$html); } add_filter('tc_fp_single_display', 'add_text_link', 20, 7); function add_text_link($html, $fp_single_id, $show_img, $fp_img, $featured_page_link, $featured_page_title, $text){ $link = '<a href="'.$featured_page_link.'">'.$text.'</a>'; return str_replace($text, $link, $html); }
Forum: Themes and Templates
In reply to: [Omega] Read More Not Showing UpUnfortunately it looks like this has nothing to do with css. This is a scripting issue as the read more link is not being generated in your html. Have you tried disabling your plugins to see if the issue persists?