Wsparcie » Motywy » Polska czcionka w IE

  • Rozwiązano tylkospokojnie

    (@tylkospokojnie)


    Witam,
    Mam oto problem z polskimi znakami, problem dotyczy jedynie wyświetlania polskich znaków w przeglądarce IE.
    Szablon to https://themeforest.net/item/crate-minimalist-wordpress-theme/19463035?ref=neuronthemes

    Strona to http://kolorplus.pl/wp/contact/

    Wygooglowałem, że trzeba odnaleźć wpis do gogle fonts i dodać parametr &subset=latin,latin-ext, natomiast ja takiego wpisu u siebie nie widzę.

    Poniżej kody do dwóch plików…

    Początek pliku style css

    /* -----------------------------------
       0. Reset Css
       1. WordPress Core
       2. Globally Applied Styles
       3. Header
       4. Page Title
       5. Filters
       6. Portfolio
       7. About
       8. Social Icons
       9. Blog
       10. Widgets
       11. Pagination
       12. Contact
       13. Search Page
       14. 404 Page
       15. Footer
       16. Responsivity Media Queries
       ----------------------------------- */
    
    /* 0. Reset Css */
    
    html, body, div, span, applet, object, iframe, table, caption, tbody, tfoot, thead, tr, th, td,
    del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var,
    h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code,
    dl, dt, dd, ol, ul, li, fieldset, form, label, legend {
    	vertical-align: baseline;
    	font-family: inherit;
    	font-weight: inherit;
    	font-style: inherit;
    	font-size: 100%;
    	outline: 0;
    	padding: 0;
    	margin: 0;
    	border: 0;
    }
    

    plik header.php

    <!DOCTYPE html>
    <html <?php language_attributes(); ?>>
    <head>
    	<!-- Document Settings -->
    	<meta charset="<?php bloginfo('charset'); ?>">
    	<?php if(get_theme_mod("neuron_responsivity") != 'disable') : ?>
    		<meta name="viewport" content="width=device-width, initial-scale=1">
    	<?php endif; ?>
        <?php wp_head(); ?>
    
    </head>
    <body <?php body_class(); ?>>
    	<div class="container">
    		<header>
    			<div class="logo">
    				<a href="<?php echo esc_url(home_url('/')); ?>">
                        <?php
                            $crate_header_logo = get_theme_mod('neuron_header_logo');
                            $crate_header_logo_text = get_theme_mod('neuron_header_logo_text');
                            if($crate_header_logo){
                                echo "<img src=". esc_url($crate_header_logo) .">";
                            }
                            else if($crate_header_logo_text) {
                                echo esc_attr($crate_header_logo_text);
                            }
                            else {
                                echo esc_attr(bloginfo('name'));
                            }
                        ?>
    				</a>
    			</div>
    			<div class="nav-holder">
    				<div class="hamburger">
    					<a href="#"><div class="hamburger-inner"></div></a>
    				</div>
                    <?php
                        $args = array(
                            'theme_location' => 'main-menu',
                            'container' => 'nav',
                            'menu_class' => 'underline'
                        );
    
                        if(has_nav_menu('main-menu')) {
                            wp_nav_menu($args);
                        }
                        else {
                            echo "<nav><ul class='underline'><li><a href='wp-admin/nav-menus.php'>" . esc_attr__("No menu assigned!","crate") ."</a></li</ul></nav>";
                        }
                    ?>
    			</div>
    		</header>
    
  • Temat ‘Polska czcionka w IE’ jest zamknięty na nowe odpowiedzi.