Rachel
Forum Replies Created
-
No problem!
Oh! I forgot. Get rid of:
<a <?php echo NimblePortfolioPlugin::phpvar2htmlatt($item_link); ?>>
And then the ending
</a>
That code makes it clickable.
What I did was go into your php file under skins > default > items.php.
Then I deleted this code:
<div class="-mask"> </div> <div class="genericon genericon-<?php echo $hover_icon; ?>"></div>
It worked for me. ??
Forum: Fixing WordPress
In reply to: Child theme css SOMETIMES working.Nevermind! It’s working now. Close this topic.
Forum: Fixing WordPress
In reply to: How to get rid of navigation on home page? (Twenty Tweleve theme)Thank you! It works.
Forum: Fixing WordPress
In reply to: How to get rid of navigation on home page? (Twenty Tweleve theme)I already did. What’s the second step?
Forum: Fixing WordPress
In reply to: Can't view analytics in JetpackAh, figured it out. Apparently it somehow got turned off even though I haven’t touched settings.
Good to know. You may close this!
Forum: Fixing WordPress
In reply to: Images not showing upI didn’t buy the theme, it’s a free theme.
Forum: Fixing WordPress
In reply to: Images not showing upThe theme’s vendor doesn’t reply to ANY complaints or problems on his site. There is literally no way to fix this through the creator of this theme. I thought someone might see something in the code I can try.
Forum: Fixing WordPress
In reply to: [Twenty Twelve Theme] Change Header WidthAlright, thanks!
Forum: Fixing WordPress
In reply to: [Twenty Twelve Theme] Change Header WidthAlright, I commented out what I wrote and put in the relative size code in the @media section. Thanks for telling me, now when I zoom in the header stays the same and doesn’t break.
You’re saying I need to import the parent theme css into the child theme css? Or start a new style.css and add styles in there instead of editing the original css? I’m a little confused.
Forum: Fixing WordPress
In reply to: [Twenty Twelve Theme] Change Header Width<?php /** * The Header template for our theme * * Displays all of the <head> section and everything up till <div id="main"> * * @package WordPress * @subpackage Twenty_Twelve * @since Twenty Twelve 1.0 */ ?><!DOCTYPE html> <!--[if IE 7]> <html class="ie ie7" <?php language_attributes(); ?>> <![endif]--> <!--[if IE 8]> <html class="ie ie8" <?php language_attributes(); ?>> <![endif]--> <!--[if !(IE 7) | !(IE 8) ]><!--> <html <?php language_attributes(); ?>> <!--<![endif]--> <head> <meta charset="<?php bloginfo( 'charset' ); ?>" /> <meta name="viewport" content="width=device-width" /> <title><?php wp_title( '|', true, 'right' ); ?></title> <link rel="profile" href="https://gmpg.org/xfn/11" /> <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" /> <?php // Loads HTML5 JavaScript file to add support for HTML5 elements in older IE versions. ?> <!--[if lt IE 9]> <script src="<?php echo get_template_directory_uri(); ?>/js/html5.js" type="text/javascript"></script> <![endif]--> <?php wp_head(); ?> </head> <body <?php body_class(); ?>> <div id="page" class="hfeed site"> <header id="masthead" class="site-header" role="banner"> <hgroup> <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1> <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2> </hgroup> <nav id="site-navigation" class="main-navigation" role="navigation"> <h3 class="menu-toggle"><?php _e( 'Menu', 'twentytwelve' ); ?></h3> <a class="assistive-text" href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentytwelve' ); ?>"><?php _e( 'Skip to content', 'twentytwelve' ); ?></a> <?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav-menu' ) ); ?> </nav><!-- #site-navigation --> <?php if ( get_header_image() ) : ?> <a href="<?php echo esc_url( home_url( '/' ) ); ?>"><img src="<?php header_image(); ?>" class="header-image" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" /></a> <?php endif; ?> </header><!-- #masthead --> <div id="main" class="wrapper">
Forum: Fixing WordPress
In reply to: [Twenty Twelve Theme] Change Header WidthI took the code from the original twentytwelve theme and pasted it, but then the navigation goes to the top. The edited version works for me, but it’s invalid. Dang it.
Forum: Fixing WordPress
In reply to: [Twenty Twelve Theme] Change Header WidthI GOT IT! Oh my goodness. For some reason .header-image was commented out. It’s not the size I want.
Thank you!
Forum: Fixing WordPress
In reply to: [Twenty Twelve Theme] Change Header WidthAlright, put that in and the header is still the same size but now it’s pushed to the left (hey, it did SOMETHING!)
code: https://cl.ly/image/2D2C3A2F2e3Y
result: https://cl.ly/image/0q2X3F042i1gPlus when I enter max-height it breaks… I thought it would work both ways.
Thank you for your patience! This shouldn’t be so difficult, lol.