CSS bug or intended behavior
Permalink
Hello,i found this: I needed to change hover of a link from css. I created a new css class and assigned it to the link in question. I placed the new class at the bottom of main.css. The problem was that it wasn`t working. After a few hours of wondering i found that topography.css is included in the html document after main.css. That means that all things you can change in main.css are pointless because they will be overwriten by topography.css. I think that is is some kind of bug but i am not very good at css so if i am wrong i`d like you to excuse me.
> Thank`s in advance and i hope i helped you.
> Thank`s in advance and i hope i helped you.
So, I understand main.css and typography.css. I would really like to put both, along with the style sheets I want to add, in a css directory. My first attempts at this met with failure. So, apparently it is more complicated than changing:
<link rel="stylesheet" media="screen" type="text/css" href="<?php echo $this->getStyleSheet('typography.css')?>" />
to
<link rel="stylesheet" media="screen" type="text/css" href="<?php echo $this->getStyleSheet('css/typography.css')?>" />
...after creating a directory title 'css' and moving *.css into that directory.
So, what do I need to know??
Smittie
<link rel="stylesheet" media="screen" type="text/css" href="<?php echo $this->getStyleSheet('typography.css')?>" />
to
<link rel="stylesheet" media="screen" type="text/css" href="<?php echo $this->getStyleSheet('css/typography.css')?>" />
...after creating a directory title 'css' and moving *.css into that directory.
So, what do I need to know??
Smittie
http://www.codeblog.ch/2009/05/concrete5-css-features/...