Collapse Div Class
-
On my front page, I have the news in outline form. Is there a way to collapse it (display:none) when going to the post page?
I have tried the following, but it does not work.
created a special class, for example
.myoutline { font-size: 100%; color: #000; }Then do something like this in the CSS
@single @hentry:first-child { .myoutline { display: none; } }Finally use the following code on the post page
sljflsdfj lsjflsf ljsfl fljdfsBut that does not work.
Is what I am trying to do even possible?
The blog I need help with is: (visible only to logged in users)
-
Also, I think this is what you were trying to do.
.single .hentry:first-child .myoutline { display: none; } -
-
- The topic ‘Collapse Div Class’ is closed to new replies.