Jump to content
  • 0

Отделить картинку от текста


a1m
 Share

Question

Имеется сайт: Ссылка

Требуется отделить картинку от текста в этом блоке: Скрин , т.к в этом css:

.eTitle {padding:0px 0 14px 0;margin-top:0;font-size:22px;font-weight:normal;border-bottom:1px solid #D9D5CD;font-family:verdana;clear:none}

при изменении параметра

padding:0px 0 14px 0

перемещается не только текст, но и картинка.

CSS:
.image {float:left;margin-right:3px; height: 35px; width:27px;border:1px dashed purple;padding:1px;}
.eTitle {padding:0px 0 14px 0;margin-top:0;font-size:22px;font-weight:normal;border-bottom:1px solid #D9D5CD;font-family:verdana;clear:none}

HTML:
<div class="eTitle" style="text-align:left;">
<a href="$IMG_URL1$" onclick="return hs.expand(this)"><img src="$IMG_URL1$" class="image" alt="$TITLE$" title="$TITLE$"><a href="$ENTRY_URL$">$TITLE$</a></div>

Спасибо.

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0


.eTitle a {
margin:10px 0 0 10px;
}

А, я не понял, я думал по горизонтали. Там кстати два тега "a".

На <a href="$ENTRY_URL$">$TITLE$</a> повесьте класс или идентификатор, его и двигайте.

Edited by Arinden
Link to comment
Share on other sites

  • 0


.eTitle a {
margin:10px 0 0 10px;
}

А, я не понял, я думал по горизонтали. Там кстати два тега "a".

На <a href="$ENTRY_URL$">$TITLE$</a> повесьте класс или идентификатор, его и двигайте.

да уже понял что их 2 ), тогда


.eTitle:last-child {
margin:10px 0 0 10px;
}

Edited by MaferoK
Link to comment
Share on other sites

  • 0

Странный вопрос... Требуется отделить картинку от текста? Так в чём проблема, возьмите и отделите.

Класс eTitle применён ко всему блоку. Соответственно, изменяя его свойства, вы влияете на блок в целом. А картинка и текст у вас сейчас в одном блоке.

Разнесите картинку и текст на разные блоки, или на вложенные в один общий блок div'ы как-нибудь так:


<div class="Title" style="text-align:left;">
<div class="eImage">
<a href="$IMG_URL1$" onclick="return hs.expand(this)">
<img src="$IMG_URL1$" class="image" alt="$TITLE$" title="$TITLE$">
</a>
</div>
<div class="eTitle">
<a href="$ENTRY_URL$">$TITLE$</a>
</div>
</div>

И теперь можете независимо влиять на картинку:


.eImage {
padding:0px 0 14px 0
}

Или на текст заголовка


.eTitle {
padding:0px 0 14px 0
}

Edited by ViStefan
Link to comment
Share on other sites

  • 0

Всем спасибо за ответ :)

Помог способ ViStefan'a

Тему офф.

пс : ViStefan, можешь оставить аську или чем ты пользуешься мне в лс, просто нужен человек который будет подсказывать в HTML :)

Edited by a1m
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy