Page 1 of 1

SimpleSlider changing text decoration

Posted: Tue Apr 13, 2010 9:02 pm
by leardas
When I add a SimpleSlider to a page using {cms_module module='SimpleSlider' show='TestShow'} I have troubles with text decoration throughout the page. The right side navigation text becomes small and I lose bulleted lists throughout the page for example.

Any advice would be appreciated, thanks

Re: SimpleSlider changing text decoration

Posted: Thu Apr 15, 2010 3:05 am
by Dr.CSS
Link to page would help...

Re: SimpleSlider changing text decoration

Posted: Thu Apr 15, 2010 5:02 pm
by leardas
here is a link to a page I have added a simpleslider to. I can simply adjust the width to keep the slider from overflowing into the navigation, but it still messes with the font of the navigation and removes the bulletes throughout the rest of the page.

http://studentservices.schools.washk12. ... ?page=test

Re: SimpleSlider changing text decoration

Posted: Thu Apr 15, 2010 5:19 pm
by Dr.CSS
Simpleslider has an embedded style sheet that has ul {list-style:none} in it, look at the page source...

Re: SimpleSlider changing text decoration

Posted: Thu Apr 15, 2010 5:47 pm
by Marijus
In modules>SimpleSlider change action.default.php

Change

Code: Select all

 ul, li{
		margin: 0;
		padding: 0;
		border: 0;
		outline: 0;
		font-size: 100%;
		vertical-align: baseline;
		background: transparent;
	}
 ul {
		list-style: none;
	}

To

Code: Select all

#simpleslider ul, li{
		margin: 0;
		padding: 0;
		border: 0;
		outline: 0;
		font-size: 100%;
		vertical-align: baseline;
		background: transparent;
	}
#simpleslider ul {
		list-style: none;
	}