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
SimpleSlider changing text decoration
Re: SimpleSlider changing text decoration
Link to page would help...
Re: SimpleSlider changing text decoration
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
http://studentservices.schools.washk12. ... ?page=test
Re: SimpleSlider changing text decoration
Simpleslider has an embedded style sheet that has ul {list-style:none} in it, look at the page source...
Re: SimpleSlider changing text decoration
In modules>SimpleSlider change action.default.php
Change
To
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;
}