402 Posted Topics

Member Avatar for phphp

The css in your MQ should look something like this @media (min-width: 400px) and (max-width: 800px){ #small_box_r { float: none; width: auto; } }

Member Avatar for gentlemedia
0
167
Member Avatar for Dannywill

That means there's nothing (except for a cgi-bin folder) in your public directory. You have to install WP on your server.

Member Avatar for Steven_15
0
395
Member Avatar for Link_1

You can draw lines with `::before` and `::after` pseudo elements. Here's a little demo. It's not exactly your layout and I've used a fixed layout, but if yours is fluid (percentage based) then it's also doable. It's only a bit more tricky to do the math and some widths of …

Member Avatar for diafol
0
237
Member Avatar for rajesanthu
Member Avatar for Anit_1

I thought I eplied on this yesterday, but I don't see it. Anyways... try adding `overflow: hidden` to `#searchbox` in your CSS. I see in inspector a weird overlap, so it might cover those links. It's a wild guess and I didn't check it in IE8 myself. On a side …

Member Avatar for gentlemedia
0
497
Member Avatar for bigignoramus

For (multiple) media queries in javascript look into window.matchMedia() http://www.javascriptkit.com/javatutors/matchmediamultiple.shtml

Member Avatar for gentlemedia
0
2K
Member Avatar for makaijohn9

This thread smells like spam to me. It's pretty obvious that one would go to the play framework website itself to learn how to build their apps.

Member Avatar for gentlemedia
0
636
Member Avatar for Siberian

No, you can't. Only if you inline your SVG you have quite some possibilities to style or animate its properties either through CSS or JS.

Member Avatar for Siberian
0
175
Member Avatar for masimies

Indeed! Bootstrap is an overkill for small or single page websites. There are some that even create simple coming soon pages with it... sigh!

Member Avatar for masimies
1
320
Member Avatar for Johannes_1
Member Avatar for FarrisFahad
Member Avatar for FarrisFahad
0
982
Member Avatar for LONGWAY

Don't double post with the same question! You've got already a good reply in your previous thread how to center elements.

Member Avatar for LONGWAY
0
419
Member Avatar for Aeonix
Member Avatar for Aeonix

If you use floats on the boxes you take them out of the normal document flow so they won't dictate the height of the parent anymore. The overflow trick is indeed a method to solve this, but use `overflow: hidden` instead to clear the floats and to avoid the scrollbar …

Member Avatar for Aeonix
0
175
Member Avatar for mattyd

Why do you want to do this with JS/jQuery? This could, and perhaps should, be done with CSS. Look into a tutorial '[buttons with CSS sprites](https://www.google.com/search?q=buttons+with+CSS+sprites&ie=utf-8&oe=utf-8&gws_rd=cr,ssl&ei=-2oqV7nSCYHw6AT73rvwBw)'. What you have now (only images and not real text for your links) is also not really SEO and screen reader friendly.

Member Avatar for gentlemedia
0
290
Member Avatar for Siberian
Member Avatar for chaze

The HTML of that `slicknav_menu` section gets added dynamically by `jquery.slicknav.min.js` (I think) and it's not in use by your theme, so you can just delete (or comment out first) the slicknav related js and css files from your HTML.

Member Avatar for gentlemedia
0
210
Member Avatar for Siberian

You will have to define the animation name in the @keyframe: @keyframe er { /* do animations */ } And to erase your object, you will need another method then an inline SVG. Probably canvas, but I'm not sure so you will have to dive into that yourself.

Member Avatar for gentlemedia
0
196
Member Avatar for ShilohAmi

Don't save it in Photoshop as HTML. You'll get rubbish as you can see. Just recreate the the design with CSS and proper mark up. A lot of things you can do nowadays pure with CSS unless you need to support IE8 and below. http://learn.shayhowe.com/html-css/

Member Avatar for gentlemedia
0
324
Member Avatar for RikTelner

Who cares that IE9 doesn't get a text-shadow? Look into feature detection with [Modernizr](https://modernizr.com/) or the likes, create a decent fallback solution and move on! http://dowebsitesneedtolookexactlythesameineverybrowser.com/

Member Avatar for gentlemedia
0
436
Member Avatar for RikTelner

Try using the Google web font loader. http://publishing-project.rivendellweb.net/loading-fonts/ When using web fonts it's recommended to use a web font loading strategy such as Google Web Font loader or Font Face Observer which also can be applied to Google Web Fonts. https://www.bramstein.com/writing/web-font-loading-patterns.html

Member Avatar for gentlemedia
1
367
Member Avatar for mattyd

There's not a really a header tag used, but there's a div tag #header in the CSS & HTML.

Member Avatar for mattyd
0
283
Member Avatar for mehnihma

Override it with this in your child theme style.css * { margin: auto } This will bring back the browsers' default margin of your elements.

Member Avatar for mehnihma
0
286
Member Avatar for FarrisFahad

You have to show the preloader with CSS and hide it with `$(window).load()`, when everything has been loaded. $(window).load(function(){ $("#Preloader").fadeOut(1000); });

Member Avatar for gentlemedia
0
227
Member Avatar for Siberian

hericles is right. Give the containing element in your CSS the same dimensions as the svg's viewBox size and sharing your code would be indeed handy.

Member Avatar for AndrisP
0
277
Member Avatar for RikTelner

This is how I approach any project: 1. Define the core functionality 2. Make that work without any bells & whistles (even if the UX sucks) 3. Enhance

Member Avatar for gentlemedia
0
400
Member Avatar for RikTelner

If you write `a.submenu ul li` you say that `ul` is a descendant of `a.submenu`, but that's not the case in that markup. That `ul` is an adjacent sibling of `a.submenu`, so if you want to select that `ul`, you'll use the adjacent sibling combinator (+), so like this `a.submenu …

Member Avatar for gentlemedia
0
258
Member Avatar for RikTelner

You can't transition the display property, so instead you could use `opacity: 0` in combination with `visibilty: hidden` or hide that div off-screen with `top: -100%` (for example) and on hover you set it to `top: 0` (or a bit more so that it will appear underneath).

Member Avatar for gentlemedia
0
322
Member Avatar for seularts

Looking at the source of your HTML, I don't see the sections with the ID you want to scroll to. If you have for example this: <a href="#featured"><i class="glyphicon glyphicon-list-alt"></i> Despre Mine</a> Then you should have further down the HTML an element with that ID like so: <section id="featured"> <p>Featured …

Member Avatar for panduranga_1
0
328
Member Avatar for Henry77
Member Avatar for rouse

With this `transform: rotateY` you rotate over the y-axis thus vertical. To flip horizontal you'll need to rotate over the x-axis; `transform: rotateX`

Member Avatar for rouse
0
244
Member Avatar for saswati_mishra

@Avinash_7 - This thread is 8 years old and the OP hasn't been here since, so don't resurrect old threads from the death!

Member Avatar for gentlemedia
0
1K
Member Avatar for SimonIoa

Just let your content decide when you need a media query. Resize your browser window and if a piece of content or element start to look akward, then you need a mq to make it look decent again. To me all this predefined mq's based on pixel widths of certain …

Member Avatar for gentlemedia
0
453
Member Avatar for esedee

By downloading and implementing Bootstrap you will not learn how to create responsive websites. It's a shortcut and you can create them, but without knowing the core concept of RWD (media queries, fluid grids and flexible media) you will allways be dependend on a framework like Bootstrap and its features, …

Member Avatar for gentlemedia
1
461
Member Avatar for Stuugie

You will need to add the 'label' element to your inputs aswell. <form> <div> <label for="name">Name</label> <input type="text" name="name" placeholder="Your Name" required> </div> <div> <label for="email">Email</label> <input type="email" name="email" placeholder="enter valid email address" required> </div> </form> And set your label and input to `display: block` in your CSS, so that …

Member Avatar for Stuugie
0
298
Member Avatar for joshl_1995

It really depends imo. Also about the escort agency. I've build some in the past back in Holland, but they were legitimate high class escort agencies (with an official license) and no dodgy businesses. If you want to do it to fill your portfolio with work, then I also think …

Member Avatar for jkon
0
719
Member Avatar for Violet_82

A bit off-topic, but instead of loading this massive jquery-ui files for just a bounce effect, you could also use a few lines of CSS to get the effect. .arrow { animation: bounce 2s infinite } @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0) } 40% { …

Member Avatar for Violet_82
0
332
Member Avatar for zachattack05

To get a scrollbar you give that section (probably a div tag) in your CSS a fixed height and the property, overflow: auto; But to get a scrollbar that fade-in on mouseover for example, you will need to resort to a custom scrollbar such as http://manos.malihu.gr/jquery-custom-content-scroller/

Member Avatar for zachattack05
0
522
Member Avatar for davy_yg

For starter, don't use fixed px widths on your `#container` (1024px) and your `#navigation` (1050px). Block-level elements such as a `div` will fill by default (auto) the full width of the window or it's containing element if you don't set a width in your CSS. By the way... you're still …

Member Avatar for gentlemedia
0
234
Member Avatar for kimmi_baby

> when it snaps to a different position, it isn't quite snapping to the top due to what I believe is to do with the width of the menu. Instead of the bottom of the menu snapping to the top of the section, the top of the navigation is appearing …

Member Avatar for Kateryna_1
0
243
Member Avatar for TObannion

Is there any reason why you want to do this with JS, because you can do it purely with a few lines of CSS. There are several ways, but here's one way you could do it. (And yes, you can't have more then one image in the src attribute) HTML: …

Member Avatar for TObannion
0
364
Member Avatar for giri.b

> They are accustomed to change classes and ids . if they see there is an event in html they understand something is going on that item It's best practice to separating out any JavaScript behavior code from your markup and presentation. It's called unobstrusive JavaScript. If you work with …

Member Avatar for gentlemedia
-1
277
Member Avatar for James_43
Member Avatar for AleMonteiro
0
222
Member Avatar for Siberian

I have a shared hosting package at Namecheap and I can have up to 3 domains/websites on my server for 38 dollar per/year. https://www.namecheap.com/hosting/shared.aspx

Member Avatar for gentlemedia
0
373
Member Avatar for mohammed_22

You've asked this already in a previous thread, so why the duplcate? https://www.daniweb.com/programming/web-development/threads/502693/display-particular-images-in-codeigniter And 'struggeling with this code' is too vague and doesn't address your issue at all.

Member Avatar for gentlemedia
0
172
Member Avatar for Devon_2

I checked in Mobile Safari (iPhone 5s with iOS 9.2.1) and to me it looks how it should look.

Member Avatar for gentlemedia
0
140
Member Avatar for Designfiver
Member Avatar for azegurb

Why not making it easier for people to help and create a [fiddle](http://jsfiddle.net/) or [pen](http://codepen.io/) from your code, so they can experience too what you experience, because I asume no one knows what you're talking about. With a live example they might do and can even fork it with a …

Member Avatar for azegurb
0
324
Member Avatar for amin.aliahmed.9
Member Avatar for Siberian

There's a lot wrong and messy in your implementation. I don't know why you have so many functions and some of them don't make sense. Also you have stuff from the tutorial still in it, which you don't need and which makes it even harder for you to debug. You …

Member Avatar for Siberian
0
297

The End.