Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
As the title states, I am working on building out an extension for our new landing page in our Qlik app. The issue I'm facing is when setting a background color on the full <div> tag it still leaves trails of empty thin white lines as borders on the actual extension. I hope I'm asking the correct board.. but if anyone knows how to resolve this issue and have the background color 100% please do let me know! Image below of my issue.
hi,
i understood your issue if you inspect your code, will see that custon div has the background but the parent doesent just write a jquery scripy to provide the css to parent also
example
$("#Your_div_ID").parent().css("background","#color");
this will fix make sure the parent you choosing is current
example 2nd parent :
$("#Your_div_ID").parent().parent().css("background","#color");
thank you
Hi Ajaykakkar93. This makes sense but where exactly do I place the jquery script? Does this go in the .js file?
Thank you!