Tech Support Guy banner
Status
Not open for further replies.

Image moving in Dreamweaver

2K views 3 replies 3 participants last post by  yamyam 
#1 ·
Hi everyone!

I'm trying to build an HTML email and i got to lay all the text I wanted but I still couldn't figure out any way to place the images and visual content where I want (example in attached screenshot). I am a newbie and I know almost nothing about coding. I heard about CSS Float but I can get it to work either. I am using Dreamweaver CC 2017.

I'd be really grateful if anyone could help me through this...

Thanks in advance!

By the way, here's my whole HTML as a built it on a template:

<!doctype html>


Bonjour,

Vous souhaitez enseigner en anglais ? Vous enseignez déjà en anglais ?

Bénéficiez d'un accompagnement intensif et convivial de 3 jours pour acquérir des stratégies linguistiques et pédagogiques, et enseigner en anglais en toute confiance.

Pour participer au stage UPEMI* les 13-14-15 septembre 2017, inscription et renseignements avant le 15 mai 2017 à l'adresse upemi@u-pem.fr.

Niveau d'anglais B2 minimum recommandé
Un test de langue réalisé par le British Council aura lieu en juin.

Attention : la présence durant les 3 jours est primordiale (9h-16h, à la CentrIFUgeuse). Un peu de travail à la maison sera également demandé.

L'équipe UPEMI
[TR]
[TD]_________________________________________________________________________________________________________
UPEMI (English as a Medium of instruction à l'UPEM) est un projet développé par le Service des relations internationales (SRI-E) et le Service Commun des Langues (SCL-CAPLA) soutenu par IDEA.
IDEA bénéficie d'une aide de l'État gérée par l'Agence Nationale de la Recherche (ANR) au titre du programme d'investissements d'Avenir (référence ANR-11-IDFI-022) en complément des apports des établissements impliqués.
[/TD]
[/TR]

 

Attachments

See less See more
2
#2 ·
You are using tables for layout, this is 1980's coding and is not recommended. You should be using div's for your positioning and CSS for your styling. My advice is to start again doing it properly. Maybe find another template as a starting point or even better learn as you go by looking at online tutorials after starting from scratch.
 
#3 ·
I agree with Colin's view on the use of tables in web page design, but you are using them for an email and IMHO are not subject to the same principles.
That said, if you look about 3/4 the way down your script you will see how to include images in your structure as was done in this line:
HTML:
[IMG]https://cache.media.enseignementsup...ements_d_avenir/43/3/invest_avenir_164433.jpg[/IMG]
which could have also been included within a table using [TR] and [TD] tags with some positional styling:
HTML:
[TR]
    [TD]
        [IMG]https://cache.media.enseignementsup...ements_d_avenir/43/3/invest_avenir_164433.jpg[/IMG]
    [/TD]
[/TR]
Hopefully, this will give you some insight into how to handle and position your images (which should be referenced using the full http url):)
 
Status
Not open for further replies.
You have insufficient privileges to reply here.
Top