SimpleSlider changing text decoration

For discussion and questions related to CMS Specific templates and stylesheets (CSS), and themes. or layout issues. This is not a place for generic "I don't know CSS issues"
Post Reply
leardas
New Member
New Member
Posts: 2
Joined: Tue Apr 13, 2010 8:54 pm

SimpleSlider changing text decoration

Post 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
User avatar
Dr.CSS
Moderator
Moderator
Posts: 12711
Joined: Thu Mar 09, 2006 5:32 am

Re: SimpleSlider changing text decoration

Post by Dr.CSS »

Link to page would help...
leardas
New Member
New Member
Posts: 2
Joined: Tue Apr 13, 2010 8:54 pm

Re: SimpleSlider changing text decoration

Post 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
User avatar
Dr.CSS
Moderator
Moderator
Posts: 12711
Joined: Thu Mar 09, 2006 5:32 am

Re: SimpleSlider changing text decoration

Post by Dr.CSS »

Simpleslider has an embedded style sheet that has ul {list-style:none} in it, look at the page source...
Marijus

Re: SimpleSlider changing text decoration

Post 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;
	}
Post Reply

Return to “Layout and Design (CSS & HTML)”