Questions tagged [fluid]

Fluid is a an XML-based templating system for TYPO3. With Fluid, all the code for the view logic moves to the template - e.g. loops, if/else switches and similar.

Fluid is a an XML-based templating system for TYPO3. With Fluid, all the code for the view logic moves to the template - e.g. loops, if/else switches and similar.

The standalone version can be used out of the box and there are integrations for TYPO3 and Neos

It looks like this

// this
<f:count>{myArray}</f:count>

// or  
{myArray -> f:count()}

Official documentation: https://github.com/TYPO3Fluid/Fluid

Since 2017-06 there is also Fluid for whose syntax is not related to php-fluid but which aims to be close to .

1458 questions
-1
votes
1 answer

Making my header & wrapper fluid/responsive with % doesnt seem to work

So i wanted to make my website fluid. So i started with my wrapper and header. The css: #wrapper { max-width:1600px; width:100%; margin:0 auto; } #header { margin: 0 auto; width: 100%; height: 7.5%; …
Nicolas
  • 2,277
  • 5
  • 36
  • 82
-1
votes
1 answer

How would I disable JQuery/Javascript once the browser window is shrinked to a certain length?

Right now I am working on a website that is fluid, but I am having some problems with the Jquery/Javascript. As of right now, once the user begins to scroll down the page, js fades the navigation bar in and changes the color of the text within the…
-1
votes
2 answers

CSS layout width fixed width and fluid right column

I have a fixed with container, lets say 1120px. Inside this container, i have a left sidebar which is 400px, and i need a right sidebar which is expanding from the container and touching the right side of the screen. Here is an image explaining the…
passatgt
  • 4,234
  • 4
  • 40
  • 54
-1
votes
1 answer

Extension builder Content Element type "content element" has no rendering definition

I did the example brought by Tobias Liegl: "FCE (Flexible Content Elements) ohne TemplaVoila" in http://www.slideshare.net/TobiasLiegl/fce-ohne-templavoila. But i get an error that says: ERROR: Content Element type "contentelements_contactbox" has…
user1677293
  • 9
  • 1
  • 4
-1
votes
2 answers

TYPO3 - Fluid returns the string "array"

I have this in my template: if artnumbers.qualitynumber.certificates is empty, it returns teh string…
Jeppe Donslund
  • 469
  • 9
  • 25
-1
votes
2 answers

BootStrap Grid System Issues

I am having some issues with the bootstrap grid system. I usually use fluid layout for my projects and have no issues. I am using the NON-FLUID layout, and somehow, my project only spans for about half the page, somehow not centering. Any…
lele0108
  • 197
  • 1
  • 1
  • 10
-1
votes
1 answer

CSS3 Borders and Gradients

I have an HTML CSS Query. I have the following JS Fiddle. http://jsfiddle.net/NC9NL/ If you look at this fiddle you will see I have two divs either side of the main content to give it the gradient effect. These two divs left and right are set at…
TheMonkeyMan
  • 8,622
  • 8
  • 27
  • 42
-1
votes
2 answers

How to get an AJAX call in my TYPO3 Extbase Extension?

I have trouble doing this, I've been looking for some manuals, but they don't seems to work for me (they're either or detailed enough or I'm too stupid, probably something from both). So I want to start an AJAX call from my Fluid View HTML file by…
user828591
  • 1,212
  • 2
  • 17
  • 32
-2
votes
1 answer

Pump Valve On/Off Regulation for Certain Time

In Switzerland, the heating period usually lasts from mid-September to mid-May. Is there any possibility to set either valve or pump to closed (0 if y=true) position from e.g., 15.05 till 15.09 in the simulation?
Orhun C.
  • 17
  • 4
-2
votes
1 answer

Cannot install npm Fluid Player

I am trying to install Fluid Player in my angular project By - npm i fluid-player But Getting this error
volt corp
  • 3
  • 1
-2
votes
1 answer

Fluid and fixed web page

Is there any way to create a page, using only valid html and css code, that would allow the page to be fluid (shrink and grow via browser window size), but also not allow any of the data (abbreviated/overflow/etc) to be lost on the page? See the…
-2
votes
2 answers

How to cleanup HTML source part?

As a searchresult I get the content around the search word. But this is just a subpart of the whole page and it includes just the tags which are near the searchword. If the matching (opening/ending) is farther away I stay with unbalanced HTML-tags.…
Bernd Wilke πφ
  • 10,390
  • 1
  • 19
  • 38
-2
votes
3 answers

Html and css mobile compatible

I'm trying to make a website for my friend's company and I did but it only looks good on desktop computers. On the phones and tablets looks really bad. I was doing so much research but couldn't find how to use fluid layouts or any other way. On some…
user7753123
-2
votes
1 answer

Auto-fill “alt”-text with imagefile name by using typoscript?

I want to add alt text for all images that are included from TYPO3 backend using typoscript. ..... Please share if anyone have answer regarding this.
Vimal Usadadiya
  • 442
  • 2
  • 10
-2
votes
4 answers

Execute plain SQL query in Extbase repository

I am trying to execute a query in Extbase repository, but it is not return any result. This is my syntax and if anybody knows the problem, please help. In repository file; public function getImages( $uidOfCE, $pid ) { $query =…
Arun Chandran
  • 175
  • 1
  • 3
  • 18
1 2 3
97
98