• Hello,

    I am trying to fix a site for a client who has pointed out an issue that happens in IE8 – I wouldn’t normally bother with this version however I wonder if anyone can suggest a bit of IE8 specific CSS to solve it.

    The Header Background Color that can be chosen through the customizer just doesn’t work in IE8 – the background of the header remains white. I have checked using netrenderer.com and others with this actual browser have looked. The test site is at kitka.net.au/balnarring and I have made the header background a blue. In IE8 it stays white.

    Examining the CSS, I see a stylesheet ‘null’ (which I am assuming is inline styling generated by the customizer) which has this style:
    /* Line 52 */
    .site-header, .site-header h1, .site-header h2, .site-header h3, .site-header h4, .site-header h5, .site-header h6
    {
    color: #ffffff;
    }

    Any suggestions welcome.

    Kitka

Viewing 15 replies - 1 through 15 (of 45 total)
  • The color property affects the font color, not the background color.

    I think the problem is that the stylesheet uses RGBA color values, like this:

    .home .site-header,
    .home .main-navigation ul ul a {
       background-color: rgba(82, 157, 201, 1);
    }

    Try using the hex color value instead:

    .home #masthead {
       background-color: #529dc9;
    }

    Note that I used the ID for the header element because I wasn’t sure how you were going to add your overriding CSS. I don’t know if the theme has a custom CSS option, but if it doesn’t, then either create a child theme or use a CSS plugin like Jetpack or Custom CSS Manager.

    Thread Starter kitkah

    (@kitkah)

    Thanks for trying to help.

    I’ve put in the color in the customizer. I’ve tried forcing the color in the site-banner.css with

    .site-header {
    background-color: #4d7c93 !important;
    background-image: url(../images/headerbg.png);
    }
    .home #masthead {
    background-color: #4d7c93 !important;
    }

    even put in a background image with that color!

    and in style.css

    .site-header {
    width: 100%;
    background-color: #4d7c93 !important;
    }

    Still comes out white in IE8. Mystery.

    Kitka

    Yes, that is weird. According to this article, IE8 should even recognize the RGBA color value. The hex value at the very least. Sorry I couldn’t help.

    Hi Team,

    I am new to this forum. I have installed this theme and i want to increase the number of lines in posts page. Is it possible to increase the lines in post page i think currently it is limited to 50words.

    Kindly someone help me to increase the lines.

    Regards,
    Bala

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Bala, You need to contact the people who gave you this theme. We can help you with CSS fixes, but not anything beyond that. We are not your theme’s vendors or your theme’s support team.

    Hi Andrew,

    Thanks for your response and i am not sure whether the post page is controlled by theme or the base word press application.

    That is why i posted here someone will help me to find out the exact file to modify.

    Thanks in advance.

    Regards,
    Bala

    Hi Andrew,

    In my posts only showing few lines and please see the below sample..

    and I told him that he should get moving or I’d be on him like a limpet. He looked at me with shock on his face and said Read More...

    Regards,
    Bala

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    I’m telling you it’s controlled by your theme.

    Yes, it is definitely controlled by the theme, it is not a WordPress option. The theme is probably calling the_excerpt() function, but you’ll have to inspect the code to be sure, or, as Andrew pointed out, contact the developer.

    Hi Andrew & Crouchingbruin,

    Thanks for both of your response and yes i modified the_excerpt() script now it is working fine.

    Regards,
    Sethu. B

    Hey Sethu

    Please help me to solve this problem.
    I have the same issue as you had.
    I found that excerpt but no idea what to do to have my posts showing up.

    I appreciate that

    Thanks
    Priscila

    Hi Priscila,

    Go to \wp-content\themes\Tesseract\functions.php file and edit the lines
    328,329,330 if it is there otherwise add this function it should work

    [ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]

    function tesseract_new_excerpt_more($more) {
           global $post;
    	return ' ' . '<a>ID) . '">' . __( 'Keep Reading ...', 'tesseract' ) . '</a>';

    Regards,
    Bala. S

    Hi I’m working on my site and have a white bar under the main heading but above the first row. How do I get rid of this?

    @hsheppard1, please post a link to your site.

Viewing 15 replies - 1 through 15 (of 45 total)
  • The topic ‘Tesseract Theme by Tyler Moore – header color customizer problem’ is closed to new replies.