Tagged Questions
-2
votes
1answer
24 views
Change only the “maincontent” area with JQUERY/Javascript or any other suitable technique [closed]
My question is, when the user clicks from one page to the next, how do I change only the "maincontent" area of the screen to show that new page where the toolbar (top) and nav bar (left) always ...
2
votes
2answers
61 views
Have text flow around an object that can be moved by the user
I have a div that floats to the left, and some text that wraps around it.
I want to be able to move the div up and down with javascript. As I do so, I want the text to flow around it (above it and ...
1
vote
0answers
66 views
Floating Images mess up Bootstrap Scrollspy
I have set up a page using bootstrap. (http://ethnoma.org/about.html) I have a sidebar navigation that is affixed (which is working great). I also am using bootstrap scrollspy on this navigation and ...
3
votes
2answers
138 views
How to make jQuery tabs() 100% high and content scrollable
I am trying to create a JS web app with tabs. The speciality of the interface is that the tabs should be as high as the window is and the content should be scrolled if higher than the window. The ...
0
votes
3answers
89 views
Aligning Absolute positioned elements next to each other
All,
I want to align absolutely positioned elements next to each other. Im sure Ive seen this effect in my own code however Im struggling to reproduce the effect in my current project.
Here is ...
2
votes
2answers
78 views
Awkward line wrap around image
Probably easiest to explain what I'm after with an image:
When I float an image the text runs around it which is great. BUT, depending on the amount of text and the image size, I'm often left with ...
0
votes
2answers
112 views
Why does internet explorer push my content halfway down the page as if creating a huge margin above?
I've created a single html page that will be used within a .aspx template. The html code I used is pretty basic and includes an email subscribe form. The form and it's code is taken directly from ...
0
votes
1answer
63 views
very buggy slow scroll (native to browser) when float:left is used in EE2 with some heavy javascript
So I have created a gallery in expression engine2, which, frankly, I don't know too well, so I used lots of javascript to make up for it
(if you'd advice any easier way to do this, I'll love you ...
0
votes
0answers
85 views
Setting boundries for a div that floats on top of a web page and moves as the viewer scrolls down
I have a float-with-the-scroll div on the right hand side of my page, and I would like to set bounderies for it, but it shares the page with text and buttons that open in a jquery vertical accordion ...
2
votes
1answer
256 views
Masonry effect without a delay when resizing
TL;DR: See this fiddle - pretty much all I'm looking for is a JavaScript doohickey that would fix the gaps between floated elements such as these, without the delay when resizing that existing ...
0
votes
0answers
51 views
how to properly position the booking panel and container shadow in our website
In our development site you can see that I have the booking panel and the shadow on the right side. Both of this should be placed at the bottom of the image. When viewing it on 3 different browsers ...
1
vote
0answers
53 views
jQuery Masonry with separators?
I am implementing jQuery Masonry and I got it just fine.
Then I wanted to add headings/separators throughout (date dividers)... To make this work I had to put each "group" into it's own container and ...
0
votes
1answer
137 views
How float divs inside a td
I have two pages with almost the same code. Both have this CSS code and the two divs:
<style type="text/css">
.visfarve { position:relative; float:left; padding:5px; border:1px solid #666; }
...
1
vote
1answer
328 views
Jquery animate with css float
i have a problem with my code, the width seems to work but the float no.
Here it is:
HERE IS AN EXAMPLE:
http://jsfiddle.net/v82ck/
THE PROBLEM: the float property on the menu when hovering doesnt ...
0
votes
3answers
96 views
jQuery bug - $(el).css('float') when absolute or fixed - different browsers return different results
if an element is floated and has a position of absolute or fixed and the script $(el).css('float') is run Chrome will return "left" but all other major (up-to-date) browsers return "none".
Why is ...