NoahB
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [BoldR Lite] Remove uploaded header imagesSure! Enjoy!
Forum: Plugins
In reply to: Custom Post Type with multiple text inputsWhat do you mean by “heading input field for all of the metaboxes”? Also, as far as a WYSIWYG editor, you may want to take a look at this prevoius forum thread: https://www.ads-software.com/support/topic/tinymce-for-blog-post-title?replies=3. As for custom classes, by this is think you mean making your own functions, such as add_new_input(). This is easy to do via the functions.php file, but it’s up to you to make the custom code. Again remember, adding more inputs for the post page is usually a native WordPress feature, not part of a theme.
Forum: Your WordPress
In reply to: fashion blog / first projectNice! Like it.
Forum: Themes and Templates
In reply to: [Quark] How to reduce margin around banner contentThanks for the link! Are you talking about to the left and right around the image and links in the header?
Forum: Themes and Templates
In reply to: Theme for Writing – Good Image handlingHey! I’m working on a new theme called Apothecary. You may want to check it out. I am currently waiting for it to be reviewed, but I’d be more than happy to send you the theme’s ZIP for install! https://codingbean.com/demo/apothecary/
Forum: Your WordPress
In reply to: Apothecary FREE ThemeThanks! There are also more updates that I will roll out once it gets published to the themes directory.
Forum: Themes and Templates
In reply to: [Quark] How to reduce margin around banner contentCan I please have the link to take a look?
Forum: Themes and Templates
In reply to: [SmartBiz] Theme does not display properly in IE10Can I please have the link for troubleshooting?
Forum: Themes and Templates
In reply to: [BoldR Lite] Remove uploaded header imagesGo to Media > Library in your main WordPress admin panel and then just select and delete the old headers.
Forum: Themes and Templates
In reply to: Style last nav itemYes, it’s possible, but with some elbow grease. You will need to make a custom menu with some code like below that you would replace the current menu’s code in your header.php file.
<div style="text-align: center; padding-bottom: 30px; width: 100%;"> <?php $pages = get_pages('sort_column=menu_order'); foreach ($pages as $page) { if ($page->post_title != "LIVE!") {$option = '<a style="color: #444; text-decoration: none;" href="';} else {$option = '<a style="color: red; text-decoration: none;" href="';} $option .= get_page_link($page->ID); $option .= '"><div style="display: inline; padding-left: 6px; padding-right: 6px;">'; $option .= $page->post_title; $option .= '</div></a>'; echo $option; } ?> </div>
That may not be the exact code, but it should give you a good starting point. If you still have questions after you edit the code (if you still choose to), feel free to post them here, and I’ll be more than happy to help!
EDIT: Sorry! Looks like you got it figured out. ??
Forum: Themes and Templates
In reply to: Child theme code for removing background and headerNope. It’s correct AFAIK. Happy coding!
Forum: Themes and Templates
In reply to: Child theme code for removing background and headerYour PHP looks all right to me! What are you asking (more specifically)?
Forum: Themes and Templates
In reply to: [Customizr] Sidebar on front pageOkay… There was actually a thread just like this a day ago that I tried to help out with. I don’t know the answer for you at the moment, but I will try and look into it. Sorry!
It’s probably just optional. If you want to upload an image, though, I would do it in your WordPress content file, where the other images for things such as pages and posts are stored. I can’t provide much more help due to the lack of information… It’s really up to you if you want an image there.
Forum: Themes and Templates
In reply to: [Customizr] Sidebar on front pageDo you have any widgets in the sidebar? Remember, the sidebar will usually auto-collapse if there is no content in it.