Poslao: 16 Maj 2015 00:10
|
offline
- m4rk0
- Administrator
- Administrator tech foruma
- Marko Vasić
- Gladijator - Maximus Decimus Meridius
- Pridružio: 14 Jan 2005
- Poruke: 15766
- Gde živiš: Majur (Colosseum)
|
123 321 je moj slobodni opis
Znaci ako tagove otvoris sa na pr
<a href="#"><p><span>
moras ih zatvoriti sa
</span></p></a>
A ti si ih u svom primeru ispremestao.
|
|
|
Registruj se da bi učestvovao u diskusiji. Registrovanim korisnicima se NE prikazuju reklame unutar poruka.
|
|
Poslao: 16 Maj 2015 01:19
|
offline
- dejnik978
- Zaslužni građanin
- Pridružio: 25 Mar 2015
- Poruke: 548
|
Reseno , hvala m4rk0. Treba da se zatvori a tagom.
Bilo je <a href="#"><p id="crveno">12.05.2015-Navodnjavanje jagoda (sistem kap po kap ili orosavanjem)</a></p>
a treba <a href="#"><p id="crveno">12.05.2015-Navodnjavanje jagoda (sistem kap po kap ili orosavanjem)</p></a>
|
|
|
|
|
|
Poslao: 31 Maj 2015 01:10
|
offline
- dejnik978
- Zaslužni građanin
- Pridružio: 25 Mar 2015
- Poruke: 548
|
Resio sam gornje pitanje. Da li se ovako povezuje sa php-om? tri col-md-4
template.php
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="podesavanje">
<?php echo $content;?>
</div>
</div>
</div>
index.php
<?php
$title ="coffee";
$content ='<a href="#" class="thumbnail">
<img src="img/coffee-563797_1280.jpg" alt="...">
</a>
<h3>coffee</h3>
<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>
</div>
<div class="col-md-4">
<a href="#" class="thumbnail">
<img src="img/coffee-171653_1920.jpg" alt="...">
</a>
<h3>coffee</h3>
<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>
</div>
<div class="col-md-4">
<a href="#" class="thumbnail">
<img src="img/coffee-563797_1280.jpg" alt="...">
</a>
<h3>coffee</h3>
<p>All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.
</p>';
include 'Template.php';
?>
|
|
|
|
|
Poslao: 08 Jun 2015 16:54
|
offline
- dejnik978
- Zaslužni građanin
- Pridružio: 25 Mar 2015
- Poruke: 548
|
Zasto mi se na mobilnom telefonu android versije 2.3.6 ovo dugme colapse javlja kao neki azijski simbol, strasno nervira, da li moze nekako da se to ispravi, hvala?
Ovo je tema
http://themezee.com/themes/leeway/
Da li bih smeo da uklonim ovu crnu traku-navbar koji se pojavljuje na malim rezolucijama?
|
|
|
|
Poslao: 08 Jun 2015 22:20
|
offline
- Dr.Cooler
- Građanin
- Pridružio: 18 Jun 2014
- Poruke: 178
|
Taj azijski znak na telefonu pojavljuje ti se zato sto pretrazivac ne podrzava ucitavanje fontova u CSS-u. To se obicno javlja prilikom koriscenja Opere Mini. Pozz
|
|
|
|
Poslao: 08 Jun 2015 22:33
|
offline
- dejnik978
- Zaslužni građanin
- Pridružio: 25 Mar 2015
- Poruke: 548
|
Dr.Cooler ::Taj azijski znak na telefonu pojavljuje ti se zato sto pretrazivac ne podrzava ucitavanje fontova u CSS-u. To se obicno javlja prilikom koriscenja Opere Mini. Pozz
Jeste Opera mini, reseno, hvala i pozdrav.
|
|
|
|
Poslao: 08 Jun 2015 22:52
|
offline
- m4rk0
- Administrator
- Administrator tech foruma
- Marko Vasić
- Gladijator - Maximus Decimus Meridius
- Pridružio: 14 Jan 2005
- Poruke: 15766
- Gde živiš: Majur (Colosseum)
|
Napisano: 08 Jun 2015 22:48
Span mozes koristiti u bezbroj situacija. Na pr kada hoces neki deo inline elementa da prilagodis. Na pr:
<p>Ovaj tekst je obican, velicine 18px i zelene boje <span>a ovaj tekst je uz to i bold</span></p>
p {
font-size: 18px;
color: green;
}
p span {
font-weight: bold;
}
Dobices nesto slicno ovome:
Ovaj tekst je obican, velicine 18px zelene boje a ovaj tekst je i bold
Dopuna: 08 Jun 2015 22:52
<p>Ovaj tekst je zelen, <span>a ovaj crven</span></p>
p {
color: green;
}
p span {
color: red !important;
}
Span elementu takodje mozes da zadas i razlicit parametar u odnosu na njegov parrent element, ali u tom slucaju moras zadati oznaku !important kako bi overidovao vrednost.
|
|
|
|