1
vote
4answers
378 views

10 Tiles positioning with jQuery or CSS

I'm kind of new to CSS and jQuery. I'm trying to position tiles on a website as follows: I've been trying with CSS and the jQuery Masonry, but the closest I've gotten was like this: Any one have ...
0
votes
2answers
736 views

Spring MVC 3 & Tiles 2: static resources are not displayed, even in non-tiles pages

I'm trying to configure and integrate Tiles 2.2 to a webapp build with Spring MVC 3 and Spring Security 3 but I'm having some difficulties: Tiles definitions are not being displayed. No static ...
1
vote
1answer
56 views

I am using tiles but the css file of baselayout wont be applied on all pages

the problem is that I have a css file that is pointed from my baselayout.jsp file as following, when I am in index.php it applies the css but when I move to Profile/view.jsp it does not. when I look ...
0
votes
1answer
76 views

spring mvc + css+ tiles

i'm using spring mvc + tiles. In my web.xml i have <servlet> <servlet-name>dispatcher</servlet-name> ...
-1
votes
1answer
934 views

Flexible Windows 8 Tile layout [closed]

I am trying to create a flexible Windows 8 like tile layout for my blog. To show as follows: http://i.stack.imgur.com/QvqXF.png Currently it is showing as below. T 2 tiles below the 2x1 tile don't ...
0
votes
0answers
414 views

why struts tiles access some css files which are defined in specific jsps? [closed]

here is my main layout <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="tiles"%> <%@taglib uri="/struts-tags" prefix="s" %> <%@page contentType="text/html" ...
0
votes
2answers
325 views

unwanted border coming for layout page of struts2 project

I am devoloping a struts 2 project in which layout page is creating an unwanted border over it. I tried to remove it by putting padding and border as 0 px. but still it is coming. <%@ taglib ...
0
votes
1answer
652 views

CSS files not getting loaded in my spring MVC application

I have a spring MVC based web application running on Tomcat 7.0. We are also using Tiles framework in the application. Below is the code for my layout page. In the page I have included some CSS files ...
6
votes
2answers
8k views

How to create Grid/Tile View with CSS

for example, i have some class .article, and i want to view this class as grid view. so i applied this style: .article{ width:100px; height:100px; background:#333; float:left; margin:5px; } ...
1
vote
1answer
105 views

How can I have a tile-able area to the left and right of a div?

I have a a div#main that has a background image with a vignetting effect. I want to keep this full image in the center of the page but I would like for a graphic to tile from the far left of the ...
0
votes
1answer
500 views

fluid design for web page with grid tiles

I want to create a grid layout for a webpage. It should consist of nine cells which fit exactly in the current browser window viewport. The center cell should have a fixed width and height and ...
0
votes
2answers
459 views

Struts2 tiles advanced appearance

I have a struts2 web application with tiles. I need to make header, sidebar and footer as static, ie. stay constant at their position on screen. An internal scroll bar for body part is needed. In ...
0
votes
1answer
2k views

using css file with tiles

I m using a css file with tiles but it is not working. my tiles.xml is: <tiles-definitions> <definition name="baseLayout" template="/jsps/mail/mailbase.jsp"> ...
1
vote
2answers
755 views

HTML/CSS tiled border (left, bottom, right)

How do I create borders from images in CSS/HTML without using CSS3? I have three border tiles: left, right, bottom. The should show up (repeat-x/y) to the left, to the right and to the bottom of my ...
3
votes
1answer
4k views

How to configure CSS with Spring MVC and Tiles

I'm using Spring 3.0.5 and Tiles 2.2.2 and I can't manage to get a stylesheet properly referenced in my app. My stylesheet is in: WEB-INF/static/css/styles.css How do I declare it properly in my ...
2
votes
1answer
156 views

Parsing 3D XML Tile Info

I am recreating a game (using only web languages, mind you), and for each room I have the XML for the tile placement. Parsing the XML doesn't produce the correct result, as there are not only X & ...
3
votes
3answers
114 views

Remove margin between rows of overflowing inline elements

I'm creating a tile-based game and am using block rendering to update a large list of tiles. I'm attempting to do this in the most simple manner, so I've been trying to work with HTML's default ...