bradchando
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Password Field is disabledI was having this same issue and was able to solve it by disabling the WordPress.com login option in Jetpack
Forum: Fixing WordPress
In reply to: Can’t A Component That Needs to Change On My PageHello,
I would be happy to try and help with your issue, but the link you provided doesn’t seem to work. What’s the URL of the page you are trying to change?
Thanks,
Brad
Forum: Themes and Templates
In reply to: Remove small space above main navigationHello,
I think adding this code will fix you problem.
img.header-image{ margin-bottom: -3px; }Let me know if you need any other help.
Thanks You,
Brad
Forum: Themes and Templates
In reply to: Graphene Theme – Problem With Removing Arrows in Navigation MenuI think if you add this code to your CSS it will remove the arrows.
#header-menu > li.menu-item-ancestor > a:before { display:none !important; }I hope this helps.
Let me know if you have any other questions.
Thank You,
Brad
Forum: Themes and Templates
In reply to: [Albar] Copyright in footerGlad to help! I had a few minutes last night and like to make myself useful.
Forum: Themes and Templates
In reply to: [Albar] Copyright in footerI use the developer tools in Firefox (Ctrl+Shift+I) to inspect the code and then narrow down what elements are causing the issue. You can edit the css live in the browser to see what changes will do the trick.
I do this every day as my profession, so its second nature. I live and breathe WordPress. 🙂
Forum: Themes and Templates
In reply to: [Albar] Copyright in footerAdd this code to the bottom of the style.css in your child theme.
.footer-widgets { min-height: 249px; }Forum: Themes and Templates
In reply to: [Albar] Copyright in footerAre you wanting the light grey area with the three columns to be smaller (Not as tall)?
Forum: Themes and Templates
In reply to: [Albar] Copyright in footerAdjusting the size of the footer can probably be accomplished with an addition to your child theme’s style.css file. Once again, if you can provide me a link, I can give you the specific code to add.
Forum: Themes and Templates
In reply to: [Albar] Copyright in footerGlad to help. I’m also glad to hear you are using a child theme. Always a good choice.
Forum: Themes and Templates
In reply to: [Hemingway] removing category/tags navigation from pageHello,
Would it be possible for you to provide a link to the page you are needing help with? It is much easier to help when I can take a look myself.
Thank You,
Brad
Forum: Themes and Templates
In reply to: Graphene Theme – Problem With Removing Arrows in Navigation MenuHello,
Could you provide a link to the site you are trying to remove the arrows from?
If I can see the actual code, I think we can get this taken care of.
Thank You,
Brad
Forum: Themes and Templates
In reply to: [Albar] Copyright in footerHello,
This is usually done be editing your theme’s footer.php file. If you can provide a link to your site, perhaps I can give you a more precise answer as to where to insert the copyright code.
I hope this helps.
Thank You,
Brad
Forum: Themes and Templates
In reply to: Changing padding on single page.Hello,
I think if you add the following code to the end of your style.css file it might do the trick. Adjust the numbers accordingly until you get the desired placement.
.wp-post-image{ margin-top: -30px; margin-left: -30px; }I hope this helps. Let me know if you have any other questions
Thank You,
Brad
Forum: Fixing WordPress
In reply to: How to resize site for mobile using CSSHello,
I think you are going to need more than a line of CSS to accomplish what you are needing. The term for what you a referring to is “responsive design.” Here is a more thorough explaination: https://developers.google.com/web/fundamentals/getting-started/your-first-multi-screen-site/responsive?hl=en
If you just want to make images always fit within the available space, you could add this line to you .css file:
img { max-width: 100%; }I hope this helps. Let me know if you have other questions.
Thank You,
Brad