[Pro] Styling Carousel Text Tabs

I have some carousel text tabs simply 1,2,3 & 4

I want to style the text, I know this can be done via the page links area in the inspector. But can I create a .style, .style active, .stylehover etc and apply this to it? Or Is there another way…

Worm


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

If you want to create a style for .controls a and another for .controls a.active, that will target these links specifically.

Walter

On Mar 21, 2012, at 8:13 AM, Mr worm wrote:

I have some carousel text tabs simply 1,2,3 & 4

I want to style the text, I know this can be done via the page links area in the inspector. But can I create a .style, .style active, .stylehover etc and apply this to it? Or Is there another way…

Worm


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Thanks Walt thought so


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Trouble is if likek me you have other carousel tabs on the page that are graphic .pngs the transparany would become styled then! would it not?

Meaning I would have to re/make my cuts outs with the background in mind.

Worm


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Yes, but remember you can scope CSS like this:

#theIdOfYourControlsElement a {
	text-decoration: none;
	font-size: 36px;
	background: #ccc;
	color: #333;
}
#theIdOfYourControlsElement a.active {
	color: #fff;
	background: #333;
}

So .controls stands for all carousel tab elements, graphic and text, and you get the same accessor but more specific by substituting a particular ID for the class name.

Walter

On Mar 21, 2012, at 9:05 AM, Mr worm wrote:

Trouble is if likek me you have other carousel tabs on the page that are graphic .pngs the transparany would become styled then! would it not?

Meaning I would have to re/make my cuts outs with the background in mind.

Worm


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options