Conversation
supportIs there any way to force a wrapping of the palettes, or place a manual break? Here is an example of a palette that I would like to manually force a break: http://www.colorwerx.net/san-angelo-outlaws-central-hockey-league-professional-franchise-team-colors-2001-2002/ I would like to place the break between the Green and Dark Red (3rd and 4th colors, top row). Thanks! Donovan https://wordpress.org/plugins/awesome-color-palettes/
You can try some css like this: .awe-color-palette .palette .color:nth-child(4) { clear: left; } Change the nth-child(4) to the correct number that needs the break. You may have to try a few numbers to find the right place. I think the numbering starts at 0.
Sorry for the delay in responding. Thanks for the help. However, is there a way I could manually force a new line within a block of colors? Instead of globally setting a value where all palettes would break on a certain number, but on an individual, case-by-case basis?
You can try some css like this: .awe-color-palette .palette .color:nth-child(4) { clear: left; } Change the nth-child(4) to the correct number that needs the break. You may have to try a few numbers to find the right place. I think the numbering starts at 0.
Sorry for the delay in responding. Thanks for the help. However, is there a way I could manually force a new line within a block of colors? Instead of globally setting a value where all palettes would break on a certain number, but on an individual, case-by-case basis?