batharoy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: how do you get the theme installed or activated?Leave the theme in zip format.
Go into your admin panel, Appearance > Themes
Click on Add New at the top and then upload.
That will allow you to choose the zip file & install the theme.Forum: Themes and Templates
In reply to: full width image on pageGo in and edit the page.
click on the image and then click on the edit image box that pops upForum: Themes and Templates
In reply to: [Tiny Forge] Remove Entry Title on Home page?Try it using the post ID
#post-7 .entry-header { display: none; }Forum: Themes and Templates
In reply to: [Expound] Menu bar LocationI can see its still a little wonky, try this
.navigation-main { height: 40px; margin-bottom: 80px; }Then take the margin off the #page
The codex has a page on that.
http://codex.wordpress.org/Using_Password_ProtectionForum: Themes and Templates
In reply to: Blog Post Title Won't ShowIn the style.css file you have this block of code.
#heatmapthemead-the-content-container h1 { font-size: 1.7em; line-height: 1.2em; margin-bottom: 10px; display: none; /*ADDED BY RACHEL*/ }If Rachel is not able to fix it then just delete the line.
display: none; /*ADDED BY RACHEL*/Forum: Themes and Templates
In reply to: [Twenty Thirteen] Making Blockquotes Smallerblockquote { font-size: 14px; }Forum: Themes and Templates
In reply to: [Expound] Menu bar LocationIt looks like you are missing the closing for the
<div id=”page” class=”hfeed site
Add
">to the end of that line.Forum: Themes and Templates
In reply to: [Expound] Menu bar LocationIn the header.php, you need to take this section of code
<nav id="site-navigation" class="navigation-main" role="navigation"> <h1 class="menu-toggle"><?php _e( 'Menu', 'expound' ); ?></h1> <div class="screen-reader-text skip-link"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'expound' ); ?>"><?php _e( 'Skip to content', 'expound' ); ?></a></div> <?php wp_nav_menu( array( 'theme_location' => 'primary', 'depth' => 3 ) ); ?> <?php do_action( 'expound_navigation_after' ); ?> </nav><!-- #site-navigation -->And move it just below this section.
<div id="page" class="hfeed site">Forum: Themes and Templates
In reply to: [Opulus Sombre] How to customise the fontYou still need to apply it to page elements for it to take affect.
body { font-family: 'sansationregular'; }Yes, using child themes you can alter any of the parent themes function or style.
Forum: Themes and Templates
In reply to: Bold font not displaying properlySee if one of these will help:
strong { font-style: oblique; }strong { font-weight: normal; -webkit-text-stroke: 1px; }Forum: Themes and Templates
In reply to: Bold font not displaying properlyIt’s a combination of things that are happening.
OS being Windows, limitation of Chromes rendering engine, using Google Fonts(they use the .woff format of the font). You can try downloading the fonts and hosting them on your server, that way you control what font file type is served.Forum: Themes and Templates
In reply to: [Expound] Child theme exampleJust installed Expound to try this out, heres an image of the theme directory.
http://s23.postimg.org/an0rdhkhn/Untitled.pngThis is the code I used in the expound-child style.css
/* Theme Name: Expound Child Template: expound */ @import url("../expound/style.css"); /* =Theme customization starts here -------------------------------------------------------------- */All the default styles appear on my local server.
Forum: Themes and Templates
In reply to: [Expound] Child theme exampleYou can do that with css, just install a custom css plugin.
These are the default values.#primary { width: 740px } #secondary { width: 260px; }But to answer your question you can copy/paste the example on the codex page.
Just change any accurance of twentyfourteen to expound.