Quote:
Originally Posted by glen290
Checked that a few times and still the same, must be doing something wrong creating the template.
I went in to style manager / add new template and named it test then pasted in the info from the first page (2nd box) is this correct ?
|
Make sure you added the template to the style you are using on your site.
Quote:
Originally Posted by meissenation
Thanks for the info, Lynne. Lots of learning to do. I absolutely hate this CSS stuff... wish I could just disable it and go back to the old system where everything just worked and looked correct. Change the CSS in one thing and now you've completely ruined the look of something totally unrelated. What happened to the good old days when you could just put <strong> if you want it to be strong and use UL?! LOL Crazy. Way too overcomplicated.
Anyway - thanks for the info, Lynne. Guess I'll have to create my own CSS (yuck) just to be able to use strong and ordered lists...
PS - frustration directed at VB development team, not you Lynne.
|
I just looked at your site. You aren't using your tags correctly. You need to go:
Code:
<ul>
<li>stuff</li>
<li>more stuff</li>
</ul>
You have <ul> tags all over in your list.
As for the css for strong, just add this in your custom css for the page:
HTML Code:
<style type="text/css">
strong {font-weight:bold;}
ul.unordered li {list-style-type: disc;list-style-position:inside;}
</style>
And then for your list:
HTML Code:
<ul class="unordered">
<li>stuff</li>
<li>more stuff</li>
</ul>