Jump to content

bolshi

Members
  • Posts

    5
  • Joined

  • Last visited

About bolshi

  • Birthday 11/20/1970

Previous Fields

  • Languages
    german, englisch

Profile Information

  • Gender
    Male
  • Location
    Berlin, Germany
  • Interests
    a better web

Recent Profile Visitors

535 profile views

bolshi's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Hi. The last days I spent a lot of time finding a bug in a website I develop for my school. There was a div which overlapped another. Do you know a tool or browser addon which makes div blocks visible in different colors or shows them with borders?
  2. Hi. Would be great if the world's largest web developer forum switches to https 🦾 A teacher from Berlin, Germany.
  3. Hi. I created a test page to check how jQueryui.position works. http://viawebservice03.europa-uni.de/?q=multimedia After using the position function there's a big empty space above the moved item. screenshot I found the following example on benalman.com $(".flex-nav-container").resize() But I didn't work for me. What do I have to do if ui.position() was fired? Regards. bolshi
  4. After all I started again. Works. Error is non-reproducible.
  5. I'm using bootstrap.Template snippet: <div class="container" <?php if (!empty($css_id)) { print "id="$css_id""; } ?>> <div class="row top"> <div class="col-md-8"><?php print $content['top_left_8']; ?></div> <div class="col-md-4"><?php print $content['top_right_4']; ?></div> </div> <div class="row main"> <div class="col-md-8 mainmenu"><?php print $content['main_left_8']; ?></div> <div class="col-md-4"><?php print $content['main_right_4']; ?></div> </div> <div class="row"> <div class="col-md-4"><?php print $content['middle_left_4']; ?></div> <div class="col-md-4"><?php print $content['middle_center_4']; ?></div> <div class="col-md-4"><?php print $content['middle_right_4']; ?></div> </div></div> In the first row is the topmenu in 'col-md-8. The 'col-md-4' column is empty. The next row also comes with 'col-md-8' and 'col-md-4'. In 'col-md-8' is the mainmenu. Beside the mainmenu comes a slider. The slider is 360px high. So I use the following CSS to position the mainmenu at the bottom of the row: .row > .mainmenu { float: none; display: table-cell; vertical-align: bottom;} If I use 'display: table-cell' the topmenu buttons are unclickable. Without 'display: table-cell' the layout crashes. But the topmenu is active. In contrast to that the entire mainmenu is always clickable. That scenario only happens if the 'col-md-4' column in the topmenu row is empty. If I fill the empty column beside topmenu with dummy content topmenu is clickable. screenshotIs there an alternative for 'display: table-cell'?
×
×
  • Create New...