XF 1.1 create new page and styling it

mmoore5553

Well-known member
Okay i an creating a page within XF add new page but no styling at all. I tried to add

Code:
<style type="text/css">
/*<![CDATA[*/
body {
  color: #000000;
  font-family: "Times New Roman", Times, serif;
  font-size: medium;
}
 
a {
  color: #000080;
  text-decoration: none;
}
 
a:visited {
  color: #800000;
}
 
a:hover {
  color: #800080;
}
 
h1,{
  font-size: larger
}
 
ul.li{
  list-style: disc
}
 
 
 
ul.li.ul.li {
  list-style: circle
}
 
 
/*]]>*/
</style>

But that does not get applied right. What am i missing or how can i add its own css with it or use default css in XF. I was shocked to see only bold would show up and the list i had did nothing. Thanks in advance. Also i did not knwo if i could just put external css.
 
Top Bottom