Rate this item
(0 votes)
Read 330426 times Last modified on Friday, 30 November 2012 03:07

70309 comments

  • Wildlife habitats Monday, 26 May 2025 04:17 posted by Wildlife habitats

    Hi, Neat post. There is a problem together with your website in internet explorer, could test this?

    IE nonetheless is the marketplace chief and a big
    component to folks will miss your wonderful
    writing because of this problem.

    Comment Link
  • article link Monday, 26 May 2025 04:10 posted by article link

    A few hours ago, I suddenly opened my eyes at around 3 AM, still
    thinking about that intense anime Kaiji I watched before bed.

    The tension in that anime lingers long after it
    ends.
    A fact I came across not long ago is that many of the games in Kaiji reflect real-life underground
    gambling strategies. No wonder it feels so real.
    Too wired to sleep, so I found this deep-dive blog post that talked about how Kaiji’s games work in real life.
    Seriously, if you’re into anime or gambling, you
    need to read it too.
    With my brain still spinning, I opened up my regular slot site and gave it a shot.
    I picked Book of Ra—something about the vibe
    just matched.
    You’re not going to believe this—I hit a $1,000 win. Did not see
    that coming. What I always enjoy about Gate of
    Olympus is the way multipliers can stack like crazy during free spins.

    I keep asking myself... was that just luck? Or was that destiny?

    What do you think?.

    Comment Link
  • Denniswat Monday, 26 May 2025 04:07 posted by Denniswat

    нажмите здесь
    подробнее

    Comment Link
  • Product Comparisons Monday, 26 May 2025 04:03 posted by Product Comparisons

    Thanks for finally talking about >Responsive Design

    Comment Link
  • Thomasviabs Monday, 26 May 2025 03:49 posted by Thomasviabs

    лаки джет сайт скачать - lucky jet бот, lucky jet регистрация

    Comment Link
  • can i get norvasc tablets Monday, 26 May 2025 03:46 posted by can i get norvasc tablets

    Pills information. What side effects?
    can i get norvasc tablets
    Best news about drugs. Get information here.

    Comment Link
  • freance sex Monday, 26 May 2025 03:16 posted by freance sex

    Hey! This is my first visit to your blog! We are a team of volunteers and starting a new project in a community in the same niche. Your blog provided us useful information to work on. You have done a outstanding job!

    Comment Link
  • sites not on gamstop Monday, 26 May 2025 03:05 posted by sites not on gamstop

    I like what you guys are usually up too. This
    kind of clever work and exposure! Keep up the superb works guys I've included you guys to blogroll.

    Comment Link
  • Thomasviabs Monday, 26 May 2025 02:45 posted by Thomasviabs

    lucky jet игра - лаки джет игра, джет лак

    Comment Link
  • Denniswat Monday, 26 May 2025 02:42 posted by Denniswat

    веб-сайте

    the dog house megaways рубли

    Comment Link

Leave a comment

Make sure you enter the (*) required information where indicated. HTML code is not allowed.

Project Description

Wednesday, 24 October 2012 10:04
Responsive Design
Written by 

A responsive template that fits all devices

The big word for Joomla 3.0 is Bootstrap. With basic CSS already integrated into Joomla 3.0, it is aiming for a much better UX for the end-user. Moreover, BootStrap includes responsive CSS, which allows a website to fit all devices, screen size.

LayoutLayout WidthGridColumnGutter Width
Large Desktop min: 1200px 12 40px
Default min-980px, max-1199px 12 40px
Normal Desktop & Tablet min-768px, max-979px 12 40px
Mobile max-767px 12 20px

The file bootstrap-responsive.less in folder: templates/ja_t3v3_blank/assets/less is to define media queries:

// RESPONSIVE CLASSES
// ------------------

@import "../../../plugins/system/jat3v3/t3v3base/bootstrap/less/responsive-utilities.less";


// MEDIA QUERIES
// ------------------

// Large desktops
@import "../../../plugins/system/jat3v3/t3v3base/bootstrap/less/responsive-1200px-min.less";

// Tablets to regular desktops
@import "../../../plugins/system/jat3v3/t3v3base/bootstrap/less/responsive-768px-979px.less";

// Phones to portrait tablets and narrow desktops
@import "../../../plugins/system/jat3v3/t3v3base/bootstrap/less/responsive-767px-max.less";


// RESPONSIVE NAVBAR
// ------------------

// From 979px and below, show a button to toggle navbar contents
@import "../../../plugins/system/jat3v3/t3v3base/bootstrap/less/component-animations.less";
@import "../../../plugins/system/jat3v3/t3v3base/bootstrap/less/responsive-navbar.less";

By default, the responsive files are located in: plugins/system/jat3v3/t3v3base/bootstrap/less

The list responsive files include:

  • responsive.less
  • responsive-767px-max.less
  • responsive-768px-979px.less
  • responsive-1200px-min.less
  • responsive-navbar.less
  • responsive-utilities.less
  • component-animations.less
  • responsive-navbar.less

Responsive utility classes

ClassMobile max-767pxTablets 768px to 979pxDesktop min-980px
.visible-phone Visible
.visible-tablet Visible
.visible-desktop Visible
.hidden-phone Visible Visible
.hidden-tablet Visible Visible
.hidden-desktop Visible Visible

Tablet and Regular Desktop Layout

The file responsive-768px-979px.less is the style file for Tablet and regular desktop layout. When the screen size is smaller than 979px and bigger than 768px, the template runs on the responsive-768px-979px.less file.

@media (min-width: 768px) and (max-width: 979px) {

// Fixed grid
#grid > .core(@gridColumnWidth768, @gridGutterWidth768);

// Fluid grid
#grid > .fluid(@fluidGridColumnWidth768, @fluidGridGutterWidth768);

// Input grid
#grid > .input(@gridColumnWidth768, @gridGutterWidth768);

// No need to reset .thumbnails here since it's the same @gridGutterWidth

}

Large Desktop Layout

The file responsive-1200px.less is the style file for large desktop layout (width size > 1200px} and regular desktop layout. When the screen size is smaller than 979px and bigger than 768px, the template runs on the responsive-1200px-min.less file.

@media (min-width: 1200px) {

// Fixed grid
#grid > .core(@gridColumnWidth1200, @gridGutterWidth1200);

// Fluid grid
#grid > .fluid(@fluidGridColumnWidth1200, @fluidGridGutterWidth1200);

// Input grid
#grid > .input(@gridColumnWidth1200, @gridGutterWidth1200);

// Thumbnails
.thumbnails {
margin-left: -@gridGutterWidth1200;
}
.thumbnails > li {
margin-left: @gridGutterWidth1200;
}
.row-fluid .thumbnails {
margin-left: 0;
}

}
  • Mobile Layout

    The file responsive-767px-max.less is the style file for Mobile layout. the elements are defined to fit the mobile device. When the screen size is smaller than 767px, the template runs on the responsive-767px-max.less file.

    • Logo is now on top
    • Menu is collapsed
    • One Column Content display
    • Modules blocks is in one column display as well
    • Responsive media (image, video, ...) are defined to fit the mobile layout.

Responsive CSS file

The file bootstrap-responsive.lessin folder: templates/ja_t3v3_blank/assets/less will be compiled to a CSS file named: bootstrap-responsive.css and the file is located in folder: plugins/system/jat3v3/t3v3base/bootstrap/css.

What we did

Visit Project
Recent Works