| |

Neutral
|
Mania said: also i cant find the code to remobe the border around the bloodlines box
div.pedigreescroll { border: 0px solid #000000; }
|
|
|
| |

Darkseeker
|
|
| |

Darkseeker
|
Is it possible to put a gradiant on the page with the trees and the seasonal header?
|
|
|
| |

Darkseeker
|
This is a bit of a late response, but yes. Look up "CSS gradients" on google. Use the appropriate code fragment to put in the CSS in your background. You can see my palette for an example.
|
|
|
| |

Darkseeker
|
Vennenum said: This is a bit of a late response, but yes. Look up "CSS gradients" on google. Use the appropriate code fragment to put in the CSS in your background. You can see my palette for an example.
I used the code from a CSS website, it showed that I did the code right. The only issue is it won't show, it shows the background color but not the gradient, I also used the code correctly (so I think) .mainscreen1 { background: rgb(255,189,200); background: linear-gradient(0deg, rgba(255,189,200,1) 12%, rgba(198,147,156,1) 78%); } (For the rest of the seasons it's the same, I won't copy every CSS thing I wrote lol)
|
|
|
| |

Darkseeker
|
You need to delete one "background".
|
|
|
| |

Darkseeker
|
Ahhh... I see! Thank you! EDIT: Still not working, can you write how the code should look? ive done other gradients just fine and it never works for the seasonal header. also! How to you make the background transparent- Edited at April 22, 2022 09:35 PM by Lovesick
|
|
|
| |

Neutral
|
How do I change the white denpage tables? (Pack Bio, Familiars, Pack Stats ect.) And also basically every other table. xD Secondly, how do I remove the border that outlines all site contents? Or at least edit it to be tranparent. Edited at May 18, 2022 02:29 PM by British Empire
|
|
|
| |

Darkseeker
|
British Empire said: How do I change the white denpage tables? (Pack Bio, Familiars, Pack Stats ect.) And also basically every other table. xD Secondly, how do I remove the border that outlines all site contents? Or at least edit it to be tranparent. table div:nth-child(1) {background-color: #HEX;} will change the white tables, but it also causes a few code breaks in the palette.
as for the banner and page borders just put border: none; in your code like
.mainscreen1 {background: transparent; border: none;}
.pgbg {background-color: #color; border: none;} Edited at May 18, 2022 07:50 PM by Eno
|
|
|
| |

Neutral
|
Eno said: British Empire said: How do I change the white denpage tables? (Pack Bio, Familiars, Pack Stats ect.) And also basically every other table. xD Secondly, how do I remove the border that outlines all site contents? Or at least edit it to be tranparent. table div:nth-child(1) {background-color: #HEX;} will change the white tables, but it also causes a few code breaks in the palette.
as for the banner and page borders just put border: none; in your code like
.mainscreen1 {background: transparent; border: none;}
.pgbg {background-color: #color; border: none;}
Thank you! <33
|
|
|