Broken theme stylesheet is missing

4 replies
  • WEB DESIGN
  • |
I have this problem.
Imgur: The most awesome images on the Internet

These are files I've upolade, there is style.css
http://imgur.com/8Wgycb4

Am trieing to Convert HTML site to wordpress with this tutorial
What shuld I do?
#broken #missing #stylesheet #theme
  • Profile picture of the author Dragonknigh
    Dude just add functions.php

    Code:
    <?php
    
    function enqueue_parent_styles(){
    wp_enqueue_style (parent-style, get_template_directory_uri()./style.css);
    wp_enqueue_style (child-style,
    get_stylesheet_directory_uri() . /style.css,
    array(parent-style)
    );
    }
    
    add_action (wp_enqueue_scripts, namescript_scripts_scripts);
    ?>
    {{ DiscussionBoard.errors[10994056].message }}
  • Profile picture of the author Nnasir
    Create functions.php file and enqueue stylesheet from here.
    {{ DiscussionBoard.errors[10994970].message }}
  • Profile picture of the author yukon
    Banned
    You're using a nested relative URL on the .css stylesheet in the HTML source code of your webpage.







    {{ DiscussionBoard.errors[10995012].message }}
  • Profile picture of the author lktechbd
    In your wp theme here some configuration error in your theme.

    If not yet solve your problem, I can solve the issue; so that you order me in https://goo.gl/oAeNjt

    Thanks
    {{ DiscussionBoard.errors[10998132].message }}

Trending Topics