こんにちは私はjoomlaのいくつかのcssクラスで問題を抱えています。モジュールに2つのdivがあります。1つはラッパーclass = "wrapper"で、もう1つはcontent class = "content"です。コンテンツはラッパー内にあります。私がやろうとしているのは、コンテンツクラスのcssスタイルをターゲットにすることです。通常、スタイルシートに.content {my style info}を入れるだけですが、問題は、このクラスがページ全体で数回使用されることです。したがって、バックエンドでは、モジュールにクラス名を割り当てることができるので、これを.testimonialsと呼びます。
私がこれを置くことによってそれをターゲットにしようとしているページ上の他のすべてのコンテンツクラスを変更しないように:
.testimonials .content {my style info I am trying to apply}
しかし、それは機能していません、私はあなたがdivでこれを行うことができることを知っています、それで
#testimonials .content {my style info I am trying to apply}
しかし、私の質問は、これをクラスで実行できるかどうかです。そうであれば、次を使用しようとしているときに問題が発生します。
.testimonials .content {font-size:12px; width:300px !important;}
なんらかの理由でコンテンツが折り返されておらず、段落の終わりでページから消えてしまうので、コンテンツが置かれている第1レベルのクラスが何も重なっていないことを確認しようとしています。奇妙なことは、修正してもコンテンツが50pxに収まるdivクラスでは、テキストが折り返されないため、正しくターゲットに設定されているかどうかわかりません。
編集>>>>>>>>>> ..
Joomlaが作成しているhtmlは基本的に次のようになります>>
<div class="wrapper">
<div class="content">SOME CONTENT</div
</div>
その後、古き良きJoomlaスタイルで他の100万のdivにラップされます。
モジュールに紹介文のクラスを指定したので、次のようになります。
<div class="testimonials">
<div class="wrapper">
<div class="content">SOME CONTENT</div
</div>
</div>
編集3 >>>>>>> OK、これはそれが吐き出しているものです
<div class="testimonials">
<div class="key4-block">
<div class="module-title"><h2 class="title">Client Testimonials</h2></div>
<div class="key4-module-inner">
<div class="module-content">
<script type="text/javascript">
RokStoriesImage['rokstories-184'].push('');
RokStoriesImage['rokstories-184'].push('');
RokStoriesImage['rokstories-184'].push('');
</script>
<div id="rokstories-184" class="rokstories-layout6 content-left" >
<div class="feature-block">
<div class="feature-wrapper">
<div class="feature-container">
<div class="feature-story">
<div class="image-full" style="float: right">
<img src="/sos/" alt="image" />
</div>
<div class="desc-container">
<div class="wrapper">
<span class="content"><p>Arrived in under 30 mins and got my pride and joy home in one piece, the day it conked out on me.</p>
<p>- Mr A Another</p></span>
</div>
</div>
</div>
<div class="feature-story">
<div class="image-full" style="float: right">
<img src="/sos/" alt="image" />
</div>
<div class="desc-container">
<div class="description">
<span class="feature-desc">
<p>Great Service ! , SOS came to the rescue me in no time at all and made my day.</p>
<p>- a customer</p>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
編集4 >>>>>>
これはそれがしていることです