batharoy
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to list post titles on 404.php pageYou may want to look at this page.
http://codex.wordpress.org/Function_Reference/wp_get_archivesForum: Themes and Templates
In reply to: Grunge theme problemThe error shown on your site is due to the theme. You can tell by the path of the file the error is pointing to.
One of the reasons we can’t offer support for premium themes is because we don’t have access to the theme. There also may be licensing issues that would need to be dealt with. All themes available on WordPress.org are licensed under some version of the GPL.Forum: Themes and Templates
In reply to: Changing Text within tables formattingYou can use css @media queries to make the selected text darker.
I would install a custom css plugin then add the following code.@media print { .entry-content table { color: #444; } }Forum: Themes and Templates
In reply to: [Corpo] Google Indexing IssuesGo into Settings > Reading and un-check the box “Discourage search engines from indexing this site”.
Forum: Themes and Templates
In reply to: How do I find which theme is activated?@import url(“../twentyeleven/style.css”);
This part of your child themes css file calls the parent theme, your’s is set to twentyeleven so that’s the theme it will use.
Forum: Themes and Templates
In reply to: How do I find which theme is activated?It looks like your 2011 child-theme is active.
You can tell for sure by going to Appearance > Themes in the admin panel. The first theme in the top left is your active theme. You can actually remove the 2010 theme, its not needed, but if you feel more comfortable with it there you can re-download it so it’s not broken.Can you possibly post that footer.php contents to pastebin.com and link it here?
Forum: Themes and Templates
In reply to: Custome Style for different parent pageshttp://codex.wordpress.org/Page_Templates#Custom_Page_Template
You could create multiple page templates with different descriptive titles.You cold then call a special page-name.css in the head tag so each could be styled differently.
Forum: Themes and Templates
In reply to: Twenty Twelve add phone number under search boxAlso, to add the phone:
<div class="alignright"> <?php get_search_form(); ?> <div id="phone">ENTER PHONE HERE</div> </div><!-- .alignright -->You can then use #phone in your css to style.
Forum: Themes and Templates
In reply to: Twenty Twelve add phone number under search boxTry moving your search div just above </hgroup> in your header.php file.
Forum: Themes and Templates
In reply to: [Poloray] Changing image sizes on home pageFor the logo it will require editing the header.php, make sure you create a copy from the parent folder into the child-theme folder.
You will need to edit in 2 places:
<div class="grid_8 alpha"> <div class="logo"> <div class="grid_16 omega"> <div class="menu_container">You will need to change grid_8 & grid_16, they should both be grid_12. You could also try a grid_10 & grid_14 or whatever you want as long the 2 numbers together equal 24.
For the feature image add this to the style.css in the child-theme.
.slides { height: 254px; overflow: hidden; } .flexslider .slides img { height: auto; }Forum: Themes and Templates
In reply to: [Virtue] Font size in lower level of primary menuTry this:
#nav-main ul.sf-menu ul li a { font-size: 18px; }Forum: Themes and Templates
In reply to: Partial Transparency#page {
background: rgba(255, 255, 255, 0.7);
}Forum: Themes and Templates
In reply to: [Fashionistas] LogoJust remove it from the custom css and update.
Go into Pages > All Pages
Click the box next to the pages you want to edit
In the Bulk Actions drop-down select edit then click apply
On the next scree select Do Not Allow in the comments drop-down
click updateForum: Themes and Templates
In reply to: My theme changed and I cant get back in to editTry logging in here
http://borderhi.com/wp-admin/