• Resolved awakekat

    (@awakekat)


    I have made a child theme off of expound. it has a style sheet in the child folder style.css which calls the parent:
    @import url(“../expound/style.css”);

    in that file I see:
    @import url(‘css/reset.css’);
    @import url(‘css/expound.css?v=20131116’);

    Which file is the parent css file?? And what is “v=20131116” all about and is it causing my problem in my child theme of resetting the link color – which I am having problems with.

    Thanks – confused…

Viewing 1 replies (of 1 total)
  • @import url(‘css/reset.css’); <–This rests the style before the themes stylesheet so no browser default styles are applied to the page.

    @import url(‘css/expound.css?v=20131116’); <–parent css file. Your child theme uses all styles in this file unless you overwrite them in the childs style.css.

    v=20131116 <– Version # 4 digit Year, 2 digit Month, 2 digit Day.

Viewing 1 replies (of 1 total)
  • The topic ‘CSS confused’ is closed to new replies.