Homepage Panes Help

  • QbanBuc

    #9987

    Hello everyone. I have a problem with my setup on my static page. I read the tutorial on removing the title off the page I created for my homepage pane but it is still there.

    Here is the current css code I have inserted:

    .post-8636 {

    display: none;

    }

    Any help would be appreciated. (Website: http://www.TheBayCave.com)

    Admin

    Syahir Hakim

    #45070

    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' );

    QbanBuc

    #45071

    Hi Syahir. Thank you for your response. I did what you advised and I am still seeing it in there. Excuse my ignorance if I am still doing something wrong 🙁

    Mod

    Kenneth John Odle

    #45072

    The css you want to use is

    #post-8636 .post-title {
    display: none;
    }

    QbanBuc

    #45073

    I tried what you recommended, Kenneth. No such luck sadly.

    Admin

    Syahir Hakim

    #45074

    There are still errors in your Custom CSS code. Try copying and pasting them here so we could point it out.

    QbanBuc

    #45075
    Quote:
    There are still errors in your Custom CSS code. Try copying and pasting them here so we could point it out.

    #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

    Syahir Hakim

    #45076

    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 }

    QbanBuc

    #45077

    Syahir, wow… I can not thank you enough. THAT WORKED!!!

    Now I’m sorry if I am being naive here, but weren’t those two lines above the posts supposed to go away as well? Apologies if I was under that impression. If there is no way to remove them then that’s fine. That page title was my main concern!

    Admin

    Syahir Hakim

    #45078

    Change #post-8636 .post-title to just #post-8636.

Viewing 10 posts - 1 through 10 (of 11 total)

  • 1
  • 2
  • You must be logged in to reply to this topic.