WordPress database error: [Can't create/write to file '/tmp/#sql-temptable-4db-190eeb-4.MAI' (Errcode: 28 "No space left on device")]SELECT p.* FROM wp_mdb_forum_posts AS p LEFT JOIN wp_mdb_forum_posts AS q ON( q.Id = p.ParentId AND p.Id = q.AcceptedAnswerId ) WHERE p.PostTypeId = 2 AND p.ParentId = 58474 GROUP BY p.Id ORDER BY CASE WHEN q.Id IS NOT NULL THEN 1 ELSE 0 END DESC, p.UpvoteCount DESC, p.CreationDate ASC
Topic: mdb-simple-chart spacing
FREE CONSULTATION
Hire our experts to build a dedicated project. We'll analyze your business requirements, for free.
Resolved
- User: Pro
- Premium support: No
- Technology: MDB Angular
- MDB Version: -
- Device: -
- Browser: -
- OS: -
- Provided sample code: No
- Provided link: No
Damian Gemza staff commented 7 years ago
Dear Louw, Could you please describe your question using more words? What exactly do you want to achieve? Please provide me some informations. Best Regards, DamianLouw pro commented 7 years ago
Dear Damian, I'm referring to the following example code for small charts : <mdb-simple-chart percent="85" barColor="ef1e25" trackColor="f2f2f2" scaleColor="303030" scaleLength="1" lineCap="round" lineWidth="5" trackWidth="10" size="110" rotate="0" [animate]="{duration: 1000, enabled: true}"> </mdb-simple-chart><h5><span class="badge green">Sales <i class="fa fa-arrow-circle-up"></i></span></h5> I would like the text (h5 tag) to be position closer to the chart object. RegardsDamian Gemza staff commented 7 years ago
Dear Louw, You have to add some margin-top with negative value, for example: margin-top: -25px to h5 element. Best Regards, DamianLouw pro commented 7 years ago
Thanks Damian.