Link to home
Start Free TrialLog in
Avatar of aarondarr
aarondarr

asked on

style css only if inside div

Hi I want to style a class called "views-label-title", this is used all over my site, but I only want to style it if it is inside a div with "class view-trailers"

can this be done? if so can you provide an example
Avatar of remorina
remorina
Flag of Australia image

Yes, just specify it as a child as follows
.class view-trailers .views-label-title {Styles here}

Open in new window

Sorry, I copied the name with class

Below should be the correct css
.view-trailers .views-label-title {Styles here}

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Sgogic
Sgogic

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial