bradchando
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hueman] Hueman Child Theme Change Font Color on Entire SidebarsHello Mike,
If you add the following code to the end of your style.css file, I think it will do the trick.
.sidebar a, .sidebar p{ color: #000 !important; }Let me know if you have any other questions.
Thank You,
Brad
Forum: Themes and Templates
In reply to: [Casper] Vertical Line on Page/CSS editHello H,
Since the link you posted is to a preview, I can’t view it. Would it be possible to post a link that is visible to general site visitors? If I can see the page, I can probably help with a solution for you.
Thanks,
Brad
Hello,
You can add:
#top-bar{ display:none; }to the bottom of your theme’s style.css file
Let me know if you need other help.
Thanks,
Brad
Forum: Themes and Templates
In reply to: [MH Magazine lite] Desable comments for one pageHello,
To disable comments on an individual page, click “Quick Edit” from the Pages list in the WP Dashboard.
The simply uncheck the “Allow Comments” checkbox and hit the update button.
Here is a screenshot for an example.
Let me know if you need other help.
Thanks,
Brad
Forum: Themes and Templates
In reply to: Ward Pro theme: how to edit , the html itselfThe <title> tag is going to be generated from the code found in you theme’s header.php file.
It will look something like this:
<title><?php wp_title( '|', true, 'right' ); ?></title>Editing that line of code is what you would need to do.
I think this would get you the desired results:
<title><?php wp_title(); ?></title>Keep in mind that any changes to a theme’s files could be overwritten by future updates. It is always best to use a child theme.
Let me know if you need other help.
Thanks,
Brad
Forum: Fixing WordPress
In reply to: image background but a want a color behind content areaTry adding this code to the bottom of your theme’s style.css file.
#content{ background-color: rgba(0,0,0,0.6); }This will set the background color to black with a 60% opacity. You can play around with the value of the last number to get the desired opacity.
Let me know if you need more help.
Thanks,
Brad
Forum: Fixing WordPress
In reply to: image background but a want a color behind content areaWould it be possible for you to add a link to the page with the problem?
If I can see the issue, we can probably get things looking nice for you.
Thank You,
Brad
Forum: Everything else WordPress
In reply to: Appointment booking plugin – advice neededDoesn’t the WooCommerce Bookings plugin come very close to offering this functionality?
http://www.woothemes.com/products/woocommerce-bookings/
I’ve customized it to suit a few of my client’s needs.
Thanks,
Brad
Forum: Fixing WordPress
In reply to: Show recently updated posts in sidebarYou can’t execute php code inside the standard text widget. That is why this is not working for you.
If you don’t feel up to creating your own widget to handle this, you could probably use a plugin like:
https://wordpress.org/plugins/php-code-widget/
I don’t have experience with this type of plugin, but it would be a quick fix. Just be aware of the security considerations mentioned in the plugin’s description.
Hope this helps!
Brad
Forum: Fixing WordPress
In reply to: Images are not UploadingCould you be more specific with what the problem is? Are you getting a particular error message when you attempt to upload media?
This sounds like a file system permission issue to me, but more information would help.
Thanks,
Brad
Forum: Themes and Templates
In reply to: [Hiero] Center HeaderHave you been able to get this working? I was able to center the header by simply changing the .site-branding css to be:
.site-branding { margin: auto; max-width: 541px; }Hope this helps!
Thanks,
Brad
Forum: Themes and Templates
In reply to: Home Page takes up about half the screen on smartphoneHave you tried adjusting the meta tag in your site header to control the initial scale level?
<meta name="viewport" content="width=device-width, initial-scale=1">Let me know if that helps.
Thanks,
Brad
Forum: Themes and Templates
In reply to: I can't seem to change this links colourHello Jaymes,
Would it be possible for you to provide a link to the site you are trying to fix? It is much easier to help if we can see the exact problem.
Thanks,
Brad
Forum: Themes and Templates
In reply to: [Mantra] Delete CommentClaus,
When you are viewing all of your sites pages from the WP dashboard, each page will have a “Quick Edit” link. Click that and you can find a checkbox to disable comments there.
I have attached a simple screenshot to show the “Quick Edit” link.
Hope this helps.
Brad
Forum: Fixing WordPress
In reply to: TwentyTwelve – Tried everything to remove grey linesMost of the whitespace is being added to the bottom of your content area. To change that, you will need to reduce the values of the margin and padding in the following lines of code from your style.css file. Experiment with the numbers until the spacing is what you are looking for.
/*197*/ .site-content article { margin-bottom: 5.142857143rem !important; padding-bottom: 1.714285714rem !important; }To add a single line back in add it to the bottom of your main div by adding this code to your style.css file.
#main{ border-bottom: 1px solid #ededed; }I hope this helps.
Brad