:star2: 2437 | @darrenfj |http://www.freecodecamp.org/darrenfj
<?php
function my_theme_enqueue_styles() {
$parent_style = 'understrap-style'; // This is 'understrap-style' for the understrap theme.
wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style',
get_stylesheet_directory_uri() . '/style.css',
array( $parent_style ),
wp_get_theme()->get('Version')
);
}
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
/*
Theme Name: understrap Child
Theme URI: http://beproductive.dk/understrap-child/
Description: understrap Child Theme
Author: Musti
Author URI: http://bepductive.dk
Template: understrap
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
Text Domain: understrap-child
*/
https://codepen.io/TravisTtk/pen/bvWwBp
hey guys need some help on this.
1) how can i align the "Experience" with the text on the right side of it?
2) The vertical grey background color only fills the window but when i scroll it doesn't fill all the way to the right.
some advices would be much appreciated!
function phoneticLookup(val) {
var result = "";
// Only change code below this line
var lookup = {
"alpha":"Adams",
"bravo":"Boston",
"charlie":"Chicago",
"delta":"Denver",
"echo":"Easy",
"foxtrot":"Frank"
};
// Only change code above this line
return result;
}
// Change this value to test
phoneticLookup("alpha");
is my code, and I'm not sure why it's returning errors.
var result
then?
result
?
result == something
?