| | |
Trying To Use CSS
Please support our HTML and CSS advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
![]() |
Deacon,
Long time, hope you r fine? I did that stuff using blockqoute. This is the CSS code: and, this is the html:[html]<td colspan="13" rowspan="11" valign="top" bgcolor="#DBDBEB" class="text"><blockquote><span class="style1"><img src="images/refinery.gif" alt="refinery" width="198" height="136" class="image" />Gasstocks Limited</span> is a Nigerian Company strategically positioned to offer Front-End Engineering Design, Construction, Maintenance and Management of Process plants/pipelines as well as support Marine logistics operations. Included in the company’s portfolio is the Procurement and Supply of specialized Oil and Gas materials and equipment for major projects around the world.</blockquote>
<blockquote> Our technical staff have many years experience in conceptualization, design and project management focused at achieving cost effective and maximum long term benefits for a our clients. Experience garnered in the industry has supported our growth and diversification in a competitive and demanding market. </blockquote></td><td rowspan="13"><img name="interface_r4_c17" src="images/interface_r4_c17.gif" width="13" height="575" border="0" id="interface_r4_c17" alt="" /></td>
<td><img src="images/spacer.gif" width="1" height="3" border="0" alt="" /></td>
</tr>
<tr>[/html]
Some how, the padding I had achieved before adding the blockquote disappeared, giving a much bigger padding. I've tried to reduce it by checking my padding and I couldn't. Do you know why that is so?
Long time, hope you r fine? I did that stuff using blockqoute. This is the CSS code:
HTML and CSS Syntax (Toggle Plain Text)
</script> <style type="text/css"> body { background-color: #bea163; margin-top: -3px; margin-bottom: -20px; } .text { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 15px; font-style: normal; line-height: 1.2; font-weight: lighter; font-variant: normal; color: #000000; text-align: left; vertical-align: top; padding-right: 5px; padding-left: 2px; padding-top: 8px; } .image { float: left; margin-top: 8px; margin-right: 20px; margin-bottom: 3px; margin-left: 0px; } a:link { text-decoration: none; } a:visited { text-decoration: none; } a:hover { text-decoration: underline; } a:active { text-decoration: none; } #Layer1 { position:absolute; left:215px; top:221px; width:126px; height:140px; z-index:1; visibility: visible; } .style1 { color: #2D1E5A; font-weight: bold; }td img {display: block;}td img {display: block;} .bg-image { background-image: url(images/interface_r2_c2.gif); background-repeat: no-repeat; } #Layer2 { position:absolute; left:327px; top:234px; width:142px; height:124px; z-index:1; } </style>
<blockquote> Our technical staff have many years experience in conceptualization, design and project management focused at achieving cost effective and maximum long term benefits for a our clients. Experience garnered in the industry has supported our growth and diversification in a competitive and demanding market. </blockquote></td><td rowspan="13"><img name="interface_r4_c17" src="images/interface_r4_c17.gif" width="13" height="575" border="0" id="interface_r4_c17" alt="" /></td>
<td><img src="images/spacer.gif" width="1" height="3" border="0" alt="" /></td>
</tr>
<tr>[/html]
Some how, the padding I had achieved before adding the blockquote disappeared, giving a much bigger padding. I've tried to reduce it by checking my padding and I couldn't. Do you know why that is so?
Deacon,
I'm supposed to put that in the text in the .text class style?
Meanwhile it seems to me like Dreamweaver 8 doesn't support that. I noticed it before I did that post (as in I saw it, but somehow - I can't explain it disappeared and has never re-appeared. lol) Maybe I'm not doing the right thing. This is the link www.gasstocksltd.com
Thanks
I'm supposed to put that in the text in the .text class style?
Meanwhile it seems to me like Dreamweaver 8 doesn't support that. I noticed it before I did that post (as in I saw it, but somehow - I can't explain it disappeared and has never re-appeared. lol) Maybe I'm not doing the right thing. This is the link www.gasstocksltd.com
Thanks
No. put it in your css beneath your body styles.
HTML and CSS Syntax (Toggle Plain Text)
body { background-color: #bea163; margin-top: -3px; margin-bottom: -20px; } blockquote { margin: 0px; } .text { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 15px; font-style: normal; line-height: 1.2; font-weight: lighter; font-variant: normal; color: #000000; text-align: left; vertical-align: top; padding-right: 5px; padding-left: 2px; padding-top: 8px; }
Last edited by FC Jamison; Aug 22nd, 2006 at 7:27 pm.
Deacon, Thanks I did it and it worked. I discovered that Style Rules above seem to affect the one below if applied together in that order.
My padding top and left attributed, refused to work leaving me with the option of controlling the entire content margin with the blockqoute style properties - though the td tag is defines as a .text style rule.
Thanks,
Uche Aniche
My padding top and left attributed, refused to work leaving me with the option of controlling the entire content margin with the blockqoute style properties - though the td tag is defines as a .text style rule.
Thanks,
Uche Aniche
Yeah...CSS is called cascading because the styles cascade from the top down.
if you have
td { margin: 5px; color: red }
.tdClass { margin: 0px }
and a tag
your td will have a margin of 0px (from the class) but the text color will be red (from the td style).
It takes some getting used to.
if you have
td { margin: 5px; color: red }
.tdClass { margin: 0px }
and a tag
<td class="tdClass">stuff</td>your td will have a margin of 0px (from the class) but the text color will be red (from the td style).
It takes some getting used to.
•
•
Join Date: Dec 2004
Posts: 1,655
Reputation:
Solved Threads: 35
I know of course that the "C" stands for "Cascading", but I always prefer to think of it as "Concatenating". The various appropriate styles for an element concatenate together into an overall "meta" style for that element. Any duplicate values are replaced during this process. That helps me understand it a bit better when I'm designing a site.
•
•
•
•
I know of course that the "C" stands for "Cascading", but I always prefer to think of it as "Concatenating". The various appropriate styles for an element concatenate together into an overall "meta" style for that element. Any duplicate values are replaced during this process. That helps me understand it a bit better when I'm designing a site.
lol
![]() |
Similar Threads
- Layout Tables to CSS (HTML and CSS)
- Layout in CSS (HTML and CSS)
- CSS center vertical (HTML and CSS)
- CSS Quicky (HTML and CSS)
Other Threads in the HTML and CSS Forum
- Previous Thread: Q. Java + Lotus Notes = RTFM?
- Next Thread: CSS, Netscape 4, @media screen, display none
| Thread Tools | Search this Thread |
appointments asp background backgroundcolor beta browser bug calendar cart cgi code codeinjection corporateidentity css design development displayimageinsteadofflash dreamweaver emailmarketing epilepsy explorer firefox flash form format google griefers hackers hitcounter hover html ide ie7 ie8 iframe image images internet internetexplorer intranet iphone javascript jpeg layout macbook maps marketshare microsoft mozilla multimedia navigationbars news offshoreoutsourcingcompany opacity opera optimization perl pnginie6 positioning problem scroll seo shopping studio swf swf. textcolor timecolor titletags url urlseparatedwords visual visualization web webdevelopment webform website windows7 xml xsl






