sandrider Posted February 27, 2020 Share Posted February 27, 2020 Hi there, I've been puzzling about and I think I have the wrong tags or something. I have this markdown in my page <div class="divTable"> <div class="divTableRow"> <div class="divTableCell"> [Mono Batch API][1] </div> </div> <div class="divTableRow"> <div class="divTableCell"> [Dual Channel Batch API][2] </div> </div> </div> [1]: /mono-batch-api [2]: /dual-channel-batch-api <style> .divTable{ display: table; width: 100%; background-color: #2b4286; } .divTableRow { display: table-row; } .divTableHeading { background-color: #EEE; display: table-header-group; } .divTableCell, .divTableHead { display: table-cell; padding: 20px; font-size: 25px; } .divTableHeading { background-color: #EEE; display: table-header-group; font-weight: bold; } .divTableFoot { background-color: #EEE; display: table-footer-group; font-weight: bold; } .divTableBody { display: table-row-group; } </style> What I'm trying to do is get change the displayed text (Mono Batch API and Dual Channel Batch API) to white. I've tried using <p> with the color: white also tried adding this to all the elements in the CSS but nothing changes it. I must be missing something. I've also added this to my CSS a { color: white } but still nothing. I'm not sure how this linking works in SS. Are those 2 items links or text? Help. Desmond Link to comment
tuanphan Posted February 27, 2020 Share Posted February 27, 2020 .divTableCell {color: white;} Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
sandrider Posted February 27, 2020 Author Share Posted February 27, 2020 I've tried this: <style> .divTable{ display: table; width: 100%; background-color: #2b4286; color: white; } .divTableRow { display: table-row; color: white; } .divTableHeading { background-color: #EEE; display: table-header-group; color: white; } .divTableCell, .divTableHead { display: table-cell; padding: 20px; font-size: 25px; color: white; } .divTableHeading { background-color: #EEE; display: table-header-group; font-weight: bold; color: white; } .divTableFoot { background-color: #EEE; display: table-footer-group; font-weight: bold; color: white; } .divTableBody { display: table-row-group; color: white; } </style> Nothing turns white. Link to comment
tuanphan Posted February 27, 2020 Share Posted February 27, 2020 Can you share link to this page which use code? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
sandrider Posted February 27, 2020 Author Share Posted February 27, 2020 Okay, I realised that in my style sheet this variable(?) pageLinkColor is the one that is setting the colours but I can't seem to find a way to change this just for this page. @tuanphan sorry for the page hasn't been published, so I can't share it but the codes above are what are exactly in the markdown block. I can change everything else except the colour of page link color. Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.