MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord
    1. Home
    2. iBoy1211
    3. Posts
    I
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 1
    • Best 0
    • Controversial 0
    • Groups 0

    Posts made by iBoy1211

    • Text stysle

      Hi i need help with text style

      How can i align it to right and max width with 50%, Because now when i make it top_right or top_left its moving all my modules to other side. I guess this is the code for text changes.

      getDom: function () {
      let wrapper = document.createElement(“div”);
      let quoteTextDiv = document.createElement(“div”);
      let quoteAuthorDiv = document.createElement(“div”);

      quoteTextDiv.className = "normal";
      quoteAuthorDiv.className = "small dimmed";
      
      
      if (this.result.quoteText && this.result.quoteAuthor){
          quoteTextDiv.innerHTML = this.result.quoteText;
          quoteAuthorDiv.innerHTML = this.result.quoteAuthor;
      }else{
          quoteTextDiv.innerHTML = "Loading";
          quoteAuthorDiv.innerHTML = "";
      }
      
      wrapper.appendChild(quoteTextDiv);
      wrapper.appendChild(quoteAuthorDiv);
      return wrapper;
      

      },

      posted in Troubleshooting
      I
      iBoy1211
    • 1 / 1