Show Page Title

  • Anonymous

    #9152

    I used the code listed elsewhere so page titles would not show. I have decided I wanted them so have deleted the css code, unfortunatelty, they still will not show. Here is the css codes I have used, am i missing one that needs deleted?

    Can these be more compact by joining some?

    #sfw-respond {
    display: none;
    }
    .post-title, .post-item, .comment-entry p {

    font-family: "Wide Latin";
    font-size:22px;
    color:#080854!important;

    }
    .header-menu li {
    font-size: 22px !important;
    font-family: "Latin" !important;
    color:#080854!important;
    font-weight: normal;!important;
    border: none; !important;
    }

    .entry-content p, .comment-entry p {
    color: #000099;!important;
    }

    .post-title,
    .post-title a,
    .sidebar {
    font-family: "Latin";
    font-weight: bold;!important;
    color:#080854; !important;
    font-size: 14px !important;

    }
    .sidebar h3 {text-align: center !important;

    }

    .sidebar-wrap h3 {
    font-size: 14px;
    }
    .sidebar-wrap {
    font-size: 12px;
    padding: 0px;
    font-family: "Latin"!important!
    color:#08054; !important!
    }

    #sidebar1 ul li {
    list-style: none: !important;
    }
    .entry-content {font-family: "Latin";
    font-size: 16px;
    color:#080854}!important;
    #footer {
    background: #080854;!important;
    padding-top: 3px;
    }
    .full-sized .slider-entry-wrap {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.7);
    height: 100%;
    position: absolute;
    right: 0;
    top:5;
    width: 100%;
    }

    .header_title {
    text-align: center;[/i]
    }
    #container {
    box-shadow: none !important;
    }
    #top-bar {
    background: none !important;
    }

    .featured_slider {
    padding: 0px !important;
    margin-top: -13px !important;
    margin-bottom: 4px !important;
    border: 2px solid #ffffff;!important;
    padding-bottom: -15px:!important;
    padding-top: 0px;!important;
    }
    #nav ul {
    padding-left: 50px;
    }
    .entry-content img, .child-page img {
    border:none !important;
    }
    .menu-bottom-shadow {
    display: none;
    }
    #slider_root {
    margin-top: -37px !important;
    margin-bottom: -70px !important;
    }
    Mod

    Kenneth John Odle

    #42884
    Quote:
    unfortunatelty, they still will not show. Here is the css codes I have used, am i missing one that needs deleted?

    Not that I can tell, unless the plugin that adds the #sfw-respond id is adding it to the post title. Possibly a browser or server caching issue?

    Quote:
    Can these be more compact by joining some?

    If the attributes are the same, you can always just separate the selectors with a comma. So this:

    #container {
    box-shadow: none !important;
    }
    #top-bar {
    background: none !important;
    }

    would become this:

    #container, #top-bar {
    background: none !important;
    }

    It’s not a big difference, but multiply that by hundreds or thousands of lines of css, and thousands of server requests, and it can save some server load.

    Incidentally, best CSS practices usually recommends that each selector is on a separate line, so instead of this:

    #container, #top-bar {
    background: none !important;
    }

    I should do this:

    #container,
    #top-bar {
    background: none !important;
    }

    AFAIK, this is more a matter of personal preference. If you minify your css, everything gets jammed together anyway.

    Anonymous

    #42885

    Thank you so much…

Viewing 3 posts - 1 through 3 (of 3 total)

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