Jump to content

Search the Community

Showing results for tags 'RTL'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


WHMCS.Community

  • The Latest WHMCS Release
    • WHMCS 8.13 Release Discussion Board
  • WHMCS.Community
    • Community Announcements
    • Introduce Yourself
    • MarketConnect Partner Product Status Updates
  • Using WHMCS
    • Pre-Sales Questions
    • Admin & Configuration Questions
    • Installation, Upgrade, and Import Support
    • Using WHMCS
    • Troubleshooting Issues
    • Vendor Discussions
  • WHMCS Showcase
    • Showcase Your Site
    • Share Your Best Practices & Tips
  • Developing & Extending WHMCS
    • Third Party Add-ons
    • Service Offers & Requests
    • Developer Corner
    • Building Modules
    • Share Ideas for WHMCS Modules
  • Community Competitions
    • News, Announcements & Blogs from WHMCS
    • Competitions
  • General Discussions
    • General Discussion
  • General Feedback & Assistance
    • Feedback
    • WHMCS.Community Tips & Tricks
  • Third Party Developers's Topics
  • Turkish International Discussions's Topics
  • Russian International Discussions's Topics
  • Spanish International Discussions's Topics
  • Portuguese International Discussions's Topics
  • French International Discussions's Topics
  • Italian International Discussions's Topics
  • German International Discussions's Topics
  • WHMCS Brasil's Topics
  • WHMCS Brasil's Tópicos
  • ModulesGarden Club's Topics
  • Hungarian International Discussions's Segítség
  • ThemeMetro's Topics
  • WHMCS Services Club's Topics
  • WHMCS Global Services Club's Topics
  • Katamaze's Free Scripts
  • Katamaze's Module Support
  • Zomex Club's Topics
  • 0100Dev Club's Topics
  • RactStudio Club's Topics

WHMCS Version

  • V8.13.x Hotfixes
  • V8.12.x Hotfixes
  • V8.11.x Hotfixes

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


About Me

Found 2 results

  1. What is the file in which it is required to make the change so that my clients receive the tickets in RTL ? And what change do I need to make in the code for this to happen?
  2. Hi, I'm newbie and I'm trying to modify a CSS file so it will work with the new twenty-one template. One of the things I want to do is to change the direction of the buttons in the card-headers so instead of like this: It will be like this: The only way I found to do it is by changing the class of the div for each one of them from "float-right" to "float-left". I tried doing it with javascript - something like that: document.querySelectorAll("div .card-header h3.card-title.m-0 .float-right")[0].classList.add("float-left"); document.querySelectorAll("div .card-header h3.card-title.m-0 .float-right")[0].classList.remove("float-right"); Is this the best way to achieve my goal? with the above scenario I have to add the code for each one of the card-headers . I tried doing it with this function: var cardHeaderLength = document.querySelectorAll("div .card-header h3.card-title.m-0 .float-right").length; var cardHeader =document.querySelectorAll("div .card-header h3.card-title.m-0 .float-right"); for (var i = 0; i < cardHeaderLength; i++) { cardHeader[i].classList.add("float-left"); cardHeader[i].classList.remove("float-right"); }; So my questions are: is there a better way to change the float direction without javascript or something like that? Regards, Ram
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated