CSS to change single page features
-
When I used the code below in Custom Design to change bullet style it worked great – EXCEPT it made a few things on my home page screwy. Is there a way through Custom Design CSS to apply the code to specific pages only? Or possibly apply the code to every page in the site EXCEPT the home page?
ul {
list-style-type:disc;
list-style-image:url(‘http://brownschool.wustl.edu/resources/PublishingImages/arrow.png’);
list-style-position:inside;
}The blog I need help with is: (visible only to logged in users)
-
CSS is theme-specific. I see that you are using the Vigilance theme.
Are you trying to just target lists inside post content areas? If so, you might try this as a start:
.entry ul { list-style-type:disc; list-style-image:url('http://brownschool.wustl.edu/resources/PublishingImages/arrow.png'); list-style-position:inside; }But it would help to know a little more about exactly what is going screwy on the home page and exactly where the lists are that you do want to target.
-
-
- The topic ‘CSS to change single page features’ is closed to new replies.