Syahir Hakim
KeymasterKuala Lumpur, Malaysia
When not perched on my workspace, I tremendously enjoy hiking in the bushes and climbing mountains. They serve as much-needed refuges from the pretense of cities.
Forum Replies Created
-
Admin
The carousel uses the Featured Image for the posts that are displayed in it. To change the carousel image, simply change the Featured Image of the associated posts.
Admin
Hi Ken,
The right way is to copy Graphene’s
single.phpfile and rename itsingle-stories.php(as you did the first time). Then, you can go either two ways:- Copy the content of Graphene’s
loop-single.phpfile intosingle-stories.php, replacing the line that containsget_template_part( 'loop', 'single' ), or - Change
get_template_part( 'loop', 'single' )insingle-stories.phptoget_template_part( 'loop', 'stories' ), and then copy Graphene’sloop-single.phpfile and rename itloop-stories.php.
See more on
get_template_part()function here:https://codex.wordpress.org/Function_Reference/get_template_part
Admin
The menu can be changed in WP Admin > Appearance > Menus. You can assign custom menus to the “GM Neo Header Menu” and “GM Neo Footer Menu” locations. As for the coloring, which element are you referring to?
As for the Coaching page, this is typically caused by some kind of page caching in place. Are you using any kind of caching plugin? E.g. W3 Total Cache, WP Super Cache, etc.
Admin
Change
#post-8636 .post-titleto just#post-8636.Admin
Try this. There were 1 missing closing brace and 1 too many closing brace that I’ve corrected for you.
#profiles a {
opacity: 0.6;
filter: alpha(opacity=60);
}
#profiles a:hover {
opacity: 1;
filter: alpha(opacity=100);
}
#developer { display: none }
body {
background-image: url(path_to_file);
background-repeat: no-repeat;
background-position: center center;
background-attachment: fixed;
-o-background-size: 100% 100%, auto;
-moz-background-size: 100% 100%, auto;
-webkit-background-size: 100% 100%, auto;
background-size: 100% 100%, auto;
}
blockquote {
margin: 1em 3em;
color: #000000;
font-size: 14.5px;
border-left: 3px solid #999;
padding-left: 1em;
}
blockquote { background-image: none }
body { margin-top: 0 !important }
#header-menu,
#secondary-menu {
display: table !important;
margin: 0 auto !important;
}
.post-title,
.post-title a,
.post-title a:visited {
font: 26px Georgia;
font-weight: bold;
padding-bottom: 5px;
}
.entry-content ul li { list-style-image: url(http://i2.wp.com/www.thebaycave.com/wp-content/uploads/2014/07/rsz_tbc-shirt-design.png) }
#header {
height: 250px;
width: 1120px;
}
.mtphr-dnt {
font-family: Tahoma;
font-size: 18px;
color: #000000;
background: #FFFFFF;
}
.mtphr-dnt-inline-title {
font-size: 20px;
line-height: 13px;
color: #D00000;
}
.sidebar p img { border: 0px solid #dedede }
.sticky { background-color: #c92323 }
.entry-content img,
.wp-caption {
border: none !important;
margin: 0;
}
div { font-size: 14px }
#post-8636 .post-title { display: none }Admin
There are still errors in your Custom CSS code. Try copying and pasting them here so we could point it out.
Admin
You can try inserting the code in Neo’s
gmneo_footer_textaction hook widget area.Admin
You can try inserting the first code into the
gmneo_headeraction hook widget area.Admin
There is a code error in your Custom CSS. Find and remove this piece of code:
function lc_add_jetpack_share_buttons(){ remove_filter( 'the_content', 'sharing_display', 19 ); remove_filter( 'the_excerpt', 'sharing_display', 19 ); if ( function_exists( 'sharing_display' ) ){ echo sharing_display(); } } add_action( 'genesis_before_post_content', 'lc_add_jetpack_share_buttons' );Admin
Add this code to Neo’s Custom CSS option:
.footer-text .provider {
display: none;
} - Copy the content of Graphene’s
