+mmgbtv he just made a internal css style to his html make it easy.
HTML Website Design Tutorial - How To Wrap Text Around Images
In this HTML Website design tutorial I will teach you how to wrap your text and content around images and pictures. You can do this really easily with one line of ...
Hey bro, i want to add some right padding with my bordered picture, the
problem is when i add the padding the border also goes all that pixels to
the left or right depending on the selected padding way. this is the code i
want to add but leting the border stick to the image and the text wrapp
with 5px padding: "border-color:#000;border-width:2px;border-style:solid;
padding-right:5px; float:left;" any ideas , suggestions?
Thanks for the Tutorial Ed and great Video Keep more coming, Though I Have
a Question, maybe you could cover it in a Video some time. Firstly I'm
making a Blog site with lots of text and different stories, I would like to
make it so that I can keep adding posts but so that it will only show 3 at
any one time (Otherwise I'll get an Endless page of text posts) Any Ideas?
Thanks! Default.
@crypticdbrg I've learned a lot from you your a good teacher .you are young
and to be commended for your efforts .But this last video was much too fast
for the level you are teaching and your arrow is flicking around all over
the place ,the images are on and off the screen in a flash giving one
headake and no time to absorbe SLOW DOWN before you trip yourself
up.fondest regards,
Couple suggestions: 1. Could you put up a list of example-code-snippets
from all of your videos? I was thinking that it'd be nice for beginners to
organize them all in a OneNote folder or something as a reference when they
start their first project! 2. default to Chrome (it's the best) 3. Get 7 (I
hope you already have)
Are you for real? - So you can only view it in Chrome because you do not
know how to demonstrate the correct way? Allow me to tell your audience:
You simply wrap the image in a div container. in the style="" set padding
to 10px and float:left;
I have a question, but I can't formulate it right. So when my web page is
on window mode (not fullscreen) the text fits on the window size and if I
make it small the page looks horrible. Please help!
Guys, it may seem like crappy video but it is his first time making a video
like this. Kinda looks like a weather man :P But telling us about sites,
and not weather lol
Do you REALLY know how to pack correctly? We didn't either... Click here to learn How to Pack Like a Pro: //bit.ly/1SOIXuw Watch more HTML Tutorials ...
if your having trouble with adding a picture just copy this and where it
says "picname" just put the name of your picture followed by what file it
is whether it says .png,.jpeg or.gif
the same thing happened to me. make sure you write the title JUST like how
its named, followed by a dot and the file type it is (jpg, gif, and what
not)
this was a really good tutorial, I was easily able to add the pop text to
my web page. If i want to have lots of different pop ups on the same page
how do i go about doing that. If i duplicate the html code, i can have pop
ups with different text, but in the css code when i change the size of the
pop up, it changes every pop up, how to I individually edit each pop up.
Thanks
+Samuel Ecks If you are putting this code on every page (which can happen sometimes when working with CMS apps like Joomla), and you only want this code to work on certain pages, then you need to use JavaScript to turn the CSS classes on or off. When I have had to do something like that, I got the URL from the browser and write a conditional statement based on what the URL is.You can get the URL like this:var url = window.location.pathname;If you want to get the filename of the page that appears at the end of a URL, you can use something like this (assuming you already defined the variable url):var filename = url.substring(url.lastIndexOf('/')+1);Then you can check the name of the HTML file and manipulate the CSS however you want.if (filename == "WHATEVER_FILE_NAME_YOU_ARE_LOOKING_FOR") { // Make sure the CSS pop-up text appears the way you want. // Remove an existing CSS class and replace it with a new one. // Add a style attribute with CSS properties to a DOM element. // This sort of thing is easy when using the JQuery JavaScript library.}else { // Leave the text as is. You probably don't even need the else statement.}
This worked perfect thank you! One last thing, currently each pop up text appears on every page of my website, do you know how i can make the code specific to one page?
+Samuel Ecks You can change the "width" property in the ".showDisplayOnHover" class to be "min-width" and give it the minimum width you want your pop-up boxes to be, such as "300px".Alternatively, you can have different classes for different sizes of pop up. Just copy the classes, paste them into your CSS code, and rename the new classes to something different, such as ".showDisplayOnHover200pxWide". Then you can adjust the "width" CSS property inside the renamed classes and give these classes to your desired HTML elements. Make sure your CSS has a section for defaulting your new class to "display: none;" when the user is not hovering the mouse cursor over the anchor tag.
this is excellent simple tutorial..but i have one problem..for me it works
with just one image for example..but not with image gallery.. ? if I use
it on few images in a row the pop up goes underneath other images not
above..i guess it has to do something with z-index but i dont get it quite
well..:/
+Binary Drone It probably does have something to do with the z-index. Imagine the web page as a series of layers. The larger then number you have for your z-index, the higher up on the stack of layers your object will appear. By default, all objects in HTML start at layer 0. So an element with a z-index of 2 will cover an element with a z-index of 1.Try using your browser's debugger (ctrl + shift + i for FireFox and Chrome) and playing with the z-index and other CSS properties on your page.
+Edson Salcedo Kde Advanced Text Editor, otherwise known as kate. It comes standard with most Linux distributions that use KDE for the desktop environment.
Add tooltip text to your web page image using HTML Egg for Mac
This is a tutorial demo for the HTML Egg App, the very first web design software that allows you to create websites right on the iPad, iPhone and Android!
HTML Wrap Text Around Image
In this tutorial will show how to position an image by aligning it to the right, wrapping text around the left side of the image so that the image does not sit on its ...