Link Style for Section

Hi.

I have white pages and i have black pages
The black pages have white links, which is my global link style

But for the white pages i have a blue link style.
It’s a bit time consuming to select this style for every link. I have a lot of pages to re-create on webflow.

Can’t i make it so any link in the class WhiteWrapper has my blue links automatically?

Yes, using custom code. Webflow doesn’t support nested selectors in the style panel.
You’d add something like this to an Embed in your nav to centralize the admin and make it easy to update site-wide.

<style>
.whitewrapper a {
  color: blue
}
</style> 

Note that the space between .whitewrapper and a is essential, it selects links that are within an element with your whitewrapper class. If you remove the space, like a.whitewrapper it would select links that themselves have the whitewrapper class.