Skip to main content

Hi

I would like to ad some more text like “Click her for learninplan”, or something like that, in the pink slide up panel in the picture below. Just to make it a bit mor obvious, and easy to revert back to the learning plan. 

Anyone that has a good solution for that?

 

 

It is possible to add text using CSS. This is the solution I went for: 

.mdl-cell.mdl-cell--7-col::after
{content: "Click here for next course";
position: absolute;
text-align: center;
width: 100%;
top: 40%; }

 


Reply