batharoy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Hueman 2.1.4 Styling Not Working on WP 3.8With a child theme custom css entries can be applied in the style.css through Appearance > Editor.
Forum: Themes and Templates
In reply to: Issues post theme installationThat appears to be a premium theme, these forums only support themes downloaded from WordPress.org.
You will need to seek support from where you purchased the theme.Forum: Themes and Templates
In reply to: [Customizr] Front Page image issueI think you can replicate this on win 7 with IE 11 in document mode 9.
It appears to be some kind of transition effect and it appears a transparent layer over the top of the image until you hover over it.Forum: Themes and Templates
In reply to: [Parabola] Post Formats in Parabola ThemePost formats do not change the page or post layout. I was confused and still not 100% understanding it.
This post helped me understand a little.
Especially this part.Once you’ve declared support to it, you’ll need to actually use it in your loop. There’s a simple conditional function to test the post format, the has_post_format() this is a simple example using it:
if( has_post_format(‘image’)){ the_post_thumbnail(‘large’); the_title(); }Here you’ll show a bigger thumbnail when you have an image post format. That is cool because when you use the image post format that’s what you’re looking for: to show your images.
It’s still up to the theme author how they implement it.
Forum: Themes and Templates
In reply to: [BlackBird] Messed up footer when I changed editorHere is the default footer code for that theme. Copy and paste overwriting what is in there now.
<div class="clear"></div> <!--Start Footer--> <div class="footer-wrapper"> <div class="container_24"> <div class="grid_24"> <div class="footer"> <?php /* A sidebar in the footer? Yep. You can can customize * your footer with four columns of widgets. */ get_sidebar('footer'); ?> </div> </div> </div> </div> <!--End Footer--> <div class="clear"></div> <div class="footer_bottom"> <div class="container_24"> <div class="grid_24"> <div class="footer_bottom_inner"> <span class="blog-desc"> <?php echo get_bloginfo('title'); ?> - <?php echo get_bloginfo('description'); ?> </span> <?php if (blackbird_get_option('blackbird_footertext') != '') { ?> <span class="copyright"><?php echo blackbird_get_option('blackbird_footertext'); ?></span> <?php } else { ?> <span class="copyright"><a href="http://www.inkthemes.com"><?php _e('BlackBird WordPress Theme by InkThemes.com', 'black-bird'); ?></a></span> <?php } ?> </div> </div> </div> </div> <?php wp_footer(); ?> </body> </html>Forum: Themes and Templates
In reply to: [Hueman] blog page templateYou can set a static front page and change the blog page in Settings > Reading.
Forum: Themes and Templates
In reply to: [Sugar and Spice] Edit logo rollover area to go to homepageDid you add it as a background header image or logo?
For a logo, go into Appearance > Theme Options add it as a Custom Logo Image and it will be clickable to go to your homepage.Forum: Themes and Templates
In reply to: Editing the Top Menu in Mantra themeThe first thing you need to do is create a new menu item.
Go to Appearance > Menus, just below pages create a link to the facebook page and link text can be facebook.
After that step is done we will add some css to make the image appear in place of the text.This code will need to be placed in a child-theme or custom css plug-in. The menu-item number will be different, we can figure that out after the link is made.
#menu-item-73 a { background-image: url(http://www.csclearning.com/WordPress/wp-content/uploads/2014/01/facebook-like-us-photo2.jpg); background-size: contain; background-repeat: no-repeat; color: transparent; } #menu-item-73 a:hover { color: transparent; }If you dont have a custom css plug-in installed, activate the one in Jetpack.
Then add the following code in Appearance > Edit CSS..home.blog.custom-background { background: url(); }Forum: Themes and Templates
In reply to: [Expound] Text color.You can add this code to a child theme or custom css plug-in.
.entry-content { color: #00ff00; }Change the color code to your choice.
Forum: Themes and Templates
In reply to: [Hueman] Simple problem (I think)The format for a link is like so. The word you want to be the link goes between the target=”_blank”> and the closing tag
<a href="http://rapgenius.com/2664433" title="Yelawolf" target="_blank">TEST</a>Forum: Themes and Templates
In reply to: How to code a logo image to be responsive in themeTry something like:
.logo img a { background: url('logo-image-path'); background-size: contain; background-repeat: no-repeat; }You can also give it a height attribute if needed.
A link to the site if possible would help me refine the code.Forum: Themes and Templates
In reply to: [Theme: One-Column]You should be able to add something like this right above the “<?php if” you posted above.
By giving the id you should be able to style it independently of the header image.
<a href="LINK TO SITE"><img src="LINK TO BANNER IMAGE" id="banner-img" alt="" /></a>Forum: Themes and Templates
In reply to: How to change a the color of a single menu titleEach menu item is given a specific menu ID.
Example: <li id=”menu-item-626″
You need to find the ID of the menu item you want to change.
In a child theme or with a custom css plug-in add the following code:#menu-item-ID#HERE a{ color: #00ff00; }Change the color code to the one you want.
To change the hover effect:
#menu-item-ID#HERE a:hover { color: #00ff00; }Forum: Installing WordPress
In reply to: Already Installed WordPress ErrorTry using a different database name during setup.