Как удалить ненужное поле в шаблоне crossover?

Тема в разделе "Изменение шаблона (кастомизация)", создана пользователем Ирина Ревин, 13.01.2009.

  1. Offline

    Ирина Ревин Недавно здесь

    Регистрация:
    19.08.2008
    Сообщения:
    74
    Симпатии:
    1
    Пол:
    Мужской
    Всем доброго времени суток!

    Подскажите пожалуйста как отредактировать шаблон crossover дабы убрать ненужный мне там рисунок, из-за которого страница начинается чёрти где -
    [​IMG]

    сайт мой тут http://www.freelogos.ru/

    шаблон брала http://joom-skin.ru/component/option,com_remository/Itemid,3/func,fileinfo/id,130/

    index.php шаблона
    Код (CODE):
    1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    2. <?php echo "<?xml version=\"1.0\"?>"; ?>
    3. <html xmlns="http://www.w3.org/1999/xhtml">
    4. <head>
    5. <meta http-equiv="Content-Type" content="text/html; <?php echo _ISO; ?>" />
    6. <?php mosShowHead(); ?>
    7. <link href="<?php echo $mosConfig_live_site;?>/templates/crossover/css/template_css.css" rel="stylesheet" type="text/css" />
    8. <script type="text/javascript">
    9.         <!--
    10.         function getWindowHeight() {
    11.             var windowHeight = 0;
    12.             if (typeof(window.innerHeight) == 'number') {
    13.                 windowHeight = window.innerHeight;
    14.             }
    15.             else {
    16.                 if (document.documentElement && document.documentElement.clientHeight) {
    17.                     windowHeight = document.documentElement.clientHeight;
    18.                 }
    19.                 else {
    20.                     if (document.body && document.body.clientHeight) {
    21.                         windowHeight = document.body.clientHeight;
    22.                     }
    23.                 }
    24.             }
    25.             return windowHeight;
    26.         }
    27.         function setFooter() {
    28.             if (document.getElementById) {
    29.                 var windowHeight = getWindowHeight();
    30.                 if (windowHeight > 0) {
    31.                     var contentHeight = document.getElementById('content').offsetHeight;
    32.                     var footerElement = document.getElementById('footer');
    33.                     var footerHeight  = footerElement.offsetHeight;
    34.                     if (windowHeight - (contentHeight + footerHeight) >= 0) {
    35.                         footerElement.style.position = 'relative';
    36.                         footerElement.style.top = (windowHeight - (contentHeight + footerHeight)) + 'px';
    37.                     }
    38.                     else {
    39.                         footerElement.style.position = 'static';
    40.                     }
    41.                 }
    42.             }
    43.         }
    44.         window.onload = function() {
    45.             setFooter();
    46.         }
    47.         window.onresize = function() {
    48.             setFooter();
    49.         }
    50.         //-->
    51.         </script>
    52. </head>
    53. <!-- *********** Nutzungsbedingungen ***********
    54. Dieses Template steht jedem zum kostenlosen Download und zur Modifikation zur Verfьgung.
    55. Bedingung: Sie dьrfen die Links im FuЯ des Templates nicht verдndern oder lцschen wenn die betreffende Website цffentlich im Internet abrufbar ist.
    56.  
    57. Wer den Link trotzdem entfernen will bekommt fьr eine Supportgebьhr in Hцhe von
    58. 10,- Euro/je Webseite (mehrere Domains erlaubt) die Elaubnis dies zu tun.
    59.  
    60. Mehr Infos zur Linkentfernung:
    61. ==============================
    62. info@pc-erlernen.de
    63.  
    64. *********** License ***********
    65.  
    66. This template is downloadable for everyone and for free. You are allowed
    67. to modify this template to suite your needs and as you wish, the only thing not allowed
    68. is removing the backlink to my site. You are allowed to remove this link if you pay a support-fee of 10,- Euro (aprox. 12 $).
    69.  
    70. More Info:
    71. =============================
    72. info@pc-erlernen.de
    73. -->
    74.  
    75. <body>
    76. <div id="head">
    77. <div class="dd-head-suche"><?php mosLoadModules ( 'user4', -1 ); ?></div>
    78. <div class="dd-head-02"><img src="<?php echo $mosConfig_live_site;?>/templates/crossover/images/head_02.gif" height="130"/></div>
    79. <div class="dd-head-03"><img src="<?php echo $mosConfig_live_site;?>/templates/crossover/images/head_03.gif" height="130"/></div>
    80. <div class="dd-head-04"><img src="<?php echo $mosConfig_live_site;?>/templates/crossover/images/head_04.gif" height="130"/></div>
    81. <div class="dd-head-05"><img src="<?php echo $mosConfig_live_site;?>/templates/crossover/images/head_05.gif" height="165"/></div>
    82. <div class="dd-head-07"><img src="<?php echo $mosConfig_live_site;?>/templates/crossover/images/head_07.gif" height="35"/></div>
    83. <div class="dd-head-08"><img src="<?php echo $mosConfig_live_site;?>/templates/crossover/images/head_08.gif" height="35"/></div>
    84. <div class="dd-head-09"><img src="<?php echo $mosConfig_live_site;?>/templates/crossover/images/head_09.gif" height="35"/></div>
    85. <div class="dd-head-10"><img src="<?php echo $mosConfig_live_site;?>/templates/crossover/images/head_10.gif" height="41" /></div>
    86. <div class="dd-head-latest"><?php mosLoadModules('user1', -2); ?></div>
    87. <div class="dd-head-popular"><?php mosLoadModules('user2', -2); ?></div>
    88. <div class="dd-head-11">
    89. <div id="top_menue">
    90. <div class="div_topmenue">
    91. <?php mosLoadModules ( 'user3', -1); ?></div>
    92. </div>
    93. </div>
    94. <div class="dd-head-16"><img src="<?php echo $mosConfig_live_site;?>/templates/crossover/images/head_16.gif" height="45"/></div>
    95. </div>
    96. <div id="menulinks"><?php mosLoadModules ( 'left'); ?></div>
    97. <div id="menurechts">
    98. <div class="div_newsflash">
    99. <?php mosLoadModules ( 'top', -3 );?>
    100. </div>
    101. </div>
    102. <div id="content">
    103. <div class="dd-head-021"><img src="<?php echo $mosConfig_live_site;?>/templates/crossover/images/bg-news.gif"/></div>
    104. <br />
    105. <br />
    106. <br />
    107. <br />
    108. <br />
    109. <br />
    110. <br />
    111. <br />
    112. <br />
    113. <br />
    114. <br />
    115. <br />
    116. <br />
    117. <p><?php mosMainBody(); ?></p>
    118. </div>
    119. <div id="footer"><?php include_once('includes/footer.php'); ?><br />
    120. template & graphics by <a href="http://www.pc-erlernen.de/" title="template & graphics by pc-erlernen.de">pc-erlernen.de</a></div>
    121. </body>
    122. </html>



    сss шаблона:

    Код (CODE):
    1. html {background: url(../images/bg.gif);}
    2.  
    3. body {
    4. color:black;
    5. padding:206px 25px 0px 26px;
    6. margin:0;
    7. font:13px verdana, sans-serif;
    8. background: repeat-y center top;
    9. background: url(../images/bg-top.gif) repeat-x;
    10. }
    11. html>body { font:13px verdana, sans-serif; padding:206px 29px 0px 26px; }  
    12. /* Allgemeine Einstellugen fьr das ganze Template*/
    13.  
    14. #menulinks {
    15. width:120px;
    16. border-left: 1px solid #A69D95;
    17. background: url(../images/bg-navi.gif) repeat-x; padding:8px 88px 0 10px;
    18. float:left;
    19. }
    20. html>body div#menulinks  { padding:8px 88px 0 10px; width:120px;}
    21.  
    22. #menurechts {
    23. float:right;
    24. width:120px;
    25. border-right: 1px solid #A69D95;}
    26.  
    27. #top_menue {
    28. border-top:1px solid #FFFFFF;
    29. background: #DCD7D4 url(../images/bg-topmenu.gif) repeat-x;}
    30.  
    31. .div_topmenue {
    32. padding-top:12px;
    33. padding-left:12px;
    34. vertical-align:left;
    35. text-align:left;
    36. width:570px;
    37. height:30px;
    38. border-left:1px solid #A69D95;
    39. border-right:1px solid #A69D95;}
    40. html>body .div_topmenue { height:30px; padding-top:10px;}
    41.  
    42. #content {
    43. color:black;
    44. background:#ededed;
    45. margin:0 157px 0 219px;
    46. border-left: 1px solid #A69D95;
    47. border-right: 1px solid #A69D95;
    48. padding:0px 0px 0px 0px;}
    49.  
    50. #content h2 {
    51. margin:0 0 10px 0;
    52. padding:2px 0 2px 5px;
    53. font:bold 16px verdana, sans-serif;
    54. border-left:10px solid #bcbcbc;
    55. border-bottom:1px solid #bcbcbc;}
    56.  
    57. #content h3 {
    58. margin:25px 0 10px 0;
    59. padding:2px 0 2px 5px;
    60. font:bold 14px verdana, sans-serif;
    61. border-left:8px solid #bcbcbc;
    62. border-bottom:1px solid #bcbcbc;}
    63.  
    64. #content h4 {
    65. margin:25px 0 10px 0;
    66. padding:2px 0 2px 5px;
    67. font:bold 12px verdana, sans-serif;
    68. border-left:6px solid #bcbcbc;
    69. border-bottom:1px solid #bcbcbc;}
    70.  
    71. #menurechts {
    72. float:right;
    73. width:120px;
    74. border-right: 1px solid #A69D95;}
    75.  
    76. #menurechts ul {
    77. margin:0px;
    78. padding:30px 0 0 0px;
    79. list-style:none;}
    80.  
    81. #menurechts li {
    82. padding:0 0 5px 0;
    83. margin:0;}
    84.  
    85. #menurechts a {
    86. color:black;
    87. background:#e1e1e1;
    88. padding:2px 20px 2px 20px;
    89. border:1px solid black;
    90. font:bold 12px verdana, sans-serif;
    91. text-decoration:none;
    92. text-align:center;}
    93.  
    94. #menurechts a:hover {
    95. color:white;background:#9a9a9a;}
    96.  
    97. .div_newsflash {
    98. height:150px;
    99. width:140px;
    100. margin:auto;
    101. padding-top:5px;
    102. padding-bottom:5px;
    103. padding-right:5px;
    104. text-align:left;
    105. font:11px arial, trebuchet mssans-serif; font-weight:normal;}
    106. html>body .div_newsflash { margin-left:-27px;}
    107.  
    108. .div_newsflash h3 {
    109. color:#123456;
    110. margin:0;
    111. padding:0;
    112. line-height:100%;
    113. font:11px arial, trebuchet mssans-serif; font-weight:normal;}
    114.  
    115. a:link {font-family:arial, trebuchet ms; font-size:10px; color:#497EA8;
    116. text-decoration:none; font-weight:bold;} /* Link-Styl fьr das ganze Template*/
    117. a:visited {font-family:arial, trebuchet ms; font-size:10px; color:#497EA8;
    118. text-decoration:none; font-weight:bold;} /* Besuchter Link-Styl fьr das ganze Template*/
    119. a:active {font-family:arial, trebuchet ms; font-size:10px; color:#497EA8;
    120. text-decoration:none; font-weight:bold;} /* Aktiver Link-Styl fьr das ganze Template*/
    121. a:hover {font-family:arial, trebuchet ms; font-size:10px; color:#B20000;
    122. text-decoration:none; font-weight:bold; border-bottom-width:1px;
    123. border-bottom-style:solid;} /* Angewдhlter Link-Styl fьr das ganze Template*/
    124.  
    125. /* FORMULAR EINSTELLUGEN */
    126. .button {font-family:arial, trebuchet ms; font-size:12px; color:#497EA8;
    127. text-decoration:none; font-weight:bold;}
    128. .inputbox {font-family:arial, trebuchet ms; font-size:10px; color:#497EA8;
    129. text-decoration:none; font-weight:bold;}
    130. .search {font-family:arial, trebuchet ms; font-size:12px; color:#B90000;
    131. text-decoration:none; font-weight:bold;}
    132.  
    133. ul#mainlevel-nav {
    134. margin:0;
    135. margin-left:-10px;
    136. padding:0;}
    137.  
    138. ul#mainlevel-nav li {
    139. list-style: none;
    140. display:inline;
    141. background:url(../images/top_menue_trennbalken.gif) right no-repeat;
    142. padding:0px 10px 0px 10px;}
    143.  
    144. ul#mainlevel-nav li a {
    145. color:#FFFFFF;
    146. font-weight:bold;}
    147.  
    148. #mainlevel-nav a:hover {font-family:arial, trebuchet ms; font-size:10px; color:#C6E400;}
    149. a.sublevel {font-family:arial, trebuchet ms; font-size:10px; color:#C6E400;}
    150. /* Einstellungen fьr Elemente im Hauptmenь, die ein ьbergeordnetes Element haben */
    151.  
    152. a.readon:link {
    153. font:10px verdana, sans-serif;
    154. color:#B60000;
    155. border-left:1px solid #B60000;
    156. padding:5px 0px 0px 5px;} /*Fromat fьr den "Read More" Link*/
    157.  
    158. a.readon:hover {
    159. font:10px verdana, sans-serif;
    160. color:#B60000;
    161. border-left:1px solid #B60000;
    162. padding:5px 0px 0px 5px;}
    163.  
    164. a.readon:visited {
    165. font:10px verdana, sans-serif;
    166. color:#B60000;
    167. border-left:1px solid #B60000;
    168. padding:5px 0px 0px 5px;}
    169.  
    170. .latestnews ul {
    171. font:10px verdana, sans-serif;
    172. color:#CFD383;
    173. border-left:1px solid #CFD383;
    174. padding:5px 0px 0px 5px;} /*Format fьr die "Letzte Beitrдge" Liste, default ist "Letzte Beitrдge" user1-Modul*/
    175.  
    176. .latestnews li {
    177. font:10px verdana, sans-serif;
    178. color:#EDEDED;
    179. border-left:1px solid #CFD383;
    180. padding:5px 0px 0px 5px;}
    181.  
    182. .mostread ul {
    183. font:10px verdana, sans-serif;} /*Format fьr die "Beliebtesten Beitrдge" Liste, default ist "Beliebteste Beitrдge" user2-Modul*/
    184.  
    185. .mostread li {
    186. font:10px verdana, sans-serif;
    187. color:#6E7045;
    188. border-left:1px solid #6E7045;
    189. padding:5px 0px 0px 5px;}
    190.  
    191. /* SEITENINHALT EINSTELLUGEN */
    192. a.category:link {
    193. font:10px verdana, sans-serif;
    194. color:#B60000;}
    195.  
    196. a.category:hover {
    197. font:10px verdana, sans-serif;
    198. color:#B60000;}
    199.  
    200. a.category:visited {
    201. font:10px verdana, sans-serif;
    202. color:#B60000;}
    203.  
    204. .blogsection {
    205. font:10px verdana, sans-serif;
    206. color:#B60000;} /* Format fьr Links in Blog-Sektion */
    207.  
    208. .blog_more {
    209. font:10px verdana, sans-serif;
    210. color:#B60000;} /* Format fьr "More" Text in Blog-Sektion*/
    211.  
    212. a.blogsection:link {
    213. font:10px verdana, sans-serif;
    214. color:#B60000;} /* Format Link */
    215.  
    216. a.blogsection:visited {
    217. font:10px verdana, sans-serif;
    218. color:#B60000;} /* Format besuchter Link */
    219.  
    220. a.blogsection:hover {
    221. font:10px verdana, sans-serif;
    222. color:#B60000;} /* Format Link, auf dem der Mauszeiger steht */
    223.  
    224. .componentheading {
    225. font:15px trebuchet ms,arial, sans-serif;
    226. font-weight:bold;
    227. background: #EDEDED;
    228. color:#000000;
    229. padding:1px 0px 0px 30px;
    230. height:49px;
    231. width:545px;
    232. background: #DCD7D4 url(../images/bg-componentheading.gif);} /* Format des Titel der Komponente */
    233.  
    234. .contentheading {
    235. font:13px verdana, sans-serif;
    236. color:#999900;
    237. text-decoration:none;
    238. font-weight:bold;} /* Format des Titel des Inhalts*/
    239.  
    240. .contentpane {
    241. font:11px trebuchet ms,arial, sans-serif;
    242. font-weight:normal;
    243. padding:5px;
    244. background: #EDEDED;}
    245.  
    246. .contentpaneopen {
    247. font:11px trebuchet ms,arial, sans-serif;
    248. font-weight:normal;
    249. border-bottom:1px dotted;
    250. border-color:#A69D95;
    251. margin:5px 10px 5px 5px;} /* Tabelle die den aktuellen Text eines Artikels hat */
    252.  
    253. .contentpagetitle {
    254. font:11px trebuchet ms,arial, sans-serif;
    255. font-weight:normal;
    256. padding:5px;
    257. background: #EDEDED;} /*Titel eines Artikel */
    258.  
    259. a.contentpagetitle:hover {
    260. font:11px trebuchet ms,arial, sans-serif;
    261. font-weight:normal;
    262. padding:5px;
    263. background: #EDEDED;} /*Titel eines Artikels, wenn er eni Link ist */
    264.  
    265. a.contentpagetitle:link {
    266. font:11px trebuchet ms,arial, sans-serif;
    267. font-weight:normal;
    268. padding:5px;
    269. background: #EDEDED;}
    270.  
    271. a.contentpagetitle:visited {font:11px trebuchet ms,arial, sans-serif;
    272. font-weight:normal;
    273. padding:5px;
    274. background: #EDEDED;}
    275.  
    276. .contentdescription {font:11px trebuchet ms,arial, sans-serif;
    277. font-weight:normal;
    278. padding:5px;
    279. background: #EDEDED;} /* Format von "DESCRIPTION" von Sektionen und Kategorien */
    280.  
    281. table.contenttoc {font:11px trebuchet ms,arial, sans-serif;
    282. font-weight:normal;
    283. padding:5px;
    284. background: #EDEDED;} /* Format fьr die Tabelle einer Tabelle mit mehreren Inhalten oder Artikel */
    285.  
    286. table.contenttoc td {font:11px trebuchet ms,arial, sans-serif;
    287. font-weight:normal;
    288. padding:5px;
    289. background: #EDEDED;}
    290.  
    291. table.contenttoc th {font:11px trebuchet ms,arial, sans-serif;
    292. font-weight:normal;
    293. padding:5px;
    294. background: #EDEDED;}
    295.  
    296. table.contenttoc td.toclink {font:11px trebuchet ms,arial, sans-serif;
    297. font-weight:normal;
    298. padding:5px;
    299. background: #EDEDED;}
    300.  
    301. a.toclink:link {font:11px trebuchet ms,arial, sans-serif;
    302. font-weight:normal;
    303. padding:5px;
    304. background: #EDEDED;}
    305.  
    306. a.toclink:visited {font:11px trebuchet ms,arial, sans-serif;
    307. font-weight:normal;
    308. padding:5px;
    309. background: #EDEDED;}
    310.  
    311. a.toclink:hover {font:11px trebuchet ms,arial, sans-serif;
    312. font-weight:normal;
    313. padding:5px;
    314. background: #EDEDED;}
    315.  
    316. /* JOOMLA! SEKTION LISTE EINSTELLUNG*/
    317. .sectiontableheader {
    318. font:11px trebuchet ms,arial, sans-serif;
    319. font-weight:bold;
    320. padding:5px;} /* Format fьr die Liste der Sektione */
    321.  
    322. .sectiontableentry1 {
    323. font:11px trebuchet ms,arial, sans-serif;
    324. font-weight:normal;
    325. padding:5px;}
    326.  
    327. .sectiontableentry2 {font:11px trebuchet ms,arial, sans-serif;
    328. font-weight:normal;
    329. padding:5px;}
    330.  
    331. /* JOOMLA! ODUL EINSTELLUNG */
    332. table.moduletable {
    333. margin-top:5px;
    334. border-width:medium;
    335. border-color:#000000;
    336. border-style:double;
    337. padding:4px;
    338. width:120px;} /* Format der Modul-Tabelle */
    339. table.moduletable th { background-color:#CCCCCC;} /* Format der Modulьberschrift und Modulttitel */
    340. table.moduletable td { background-color:#FFFFFF;} /* Format der Zellern der Tabelle der Module */
    341.  
    342. /* VERSCHIEDENE EINSTELLUGEN */
    343. /* Datum, Autor*/
    344. .createdate {font-family:arial, trebuchet ms; font-size:10px;color:#B60000;} /*Format fьr Datum und Autor */
    345. .modifydate {font-family:arial, trebuchet ms; font-size:10px;color:#123456;} /* Format fьr "Last updated on" */
    346. .small {font-family:arial, trebuchet ms; font-size:10px;color:#123456;} /* Format fьr "Written by:...." */
    347. .smalldark {font-family:arial, trebuchet ms; font-size:10px;color:#B60000;} /* Formatfьr Umfrageergebnisseite, fьr " Number of Voters" */
    348.  
    349. /* Umfrage */
    350. .poll {font:11px trebuchet ms,arial, sans-serif; font-weight:normal; padding:5px; background: #EDEDED;} /* Format fьr td der Umfragetabelle */
    351. .pollstableborder {font:11px trebuchet ms,arial, sans-serif; font-weight:normal; padding:5px; background: #EDEDED;} /* Eigenschaften der Umfragetabelle */
    352.  
    353. /* Weblinks */
    354. .weblinks{font:11px trebuchet ms,arial, sans-serif; font-weight:normal; padding:5px; background: #EDEDED;}
    355. a.weblinks:hover {font:11px trebuchet ms,arial, sans-serif; font-weight:normal; padding:5px; background: #EDEDED;}
    356.  
    357. /* Newsfeeds */
    358. .newsfeedheading {font:11px trebuchet ms,arial, sans-serif; font-weight:normal; padding:5px; background: #EDEDED;} /* Format des Newsfeed Titels */
    359. .newsfeeddate {font:11px trebuchet ms,arial, sans-serif; font-weight:normal; padding:5px; background: #EDEDED;} /* Datum des Newsfeed */
    360. .fase4rdf {font:11px trebuchet ms,arial, sans-serif; font-weight:normal; padding:5px; background: #EDEDED;} /* Format des Inhalts des Newsfeed */
    361.  
    362. /* Suche */
    363. table.searchintro {font:11px trebuchet ms,arial, sans-serif; font-weight:normal; padding:5px; background: #EDEDED;} /* Format fьr "Search Keyword: test returned 4 matches" Box, die nach der Suche angezeigt wird. */
    364.  
    365. /* Grafik-Layer */
    366.  
    367. div.dd-head-suche {
    368. position:absolute;
    369. left:63px;
    370. top:155px;
    371. widht:100%;
    372. height:100%;
    373. color:black;
    374. z-index: 900;}
    375.  
    376. div.dd-head-02 {
    377. position:absolute;
    378. left:26px;
    379. top:0px;
    380. widht:219px;
    381. height:130px;}
    382.  
    383. div.dd-head-03 {
    384. position:absolute;
    385. left:245px;
    386. top:0px;
    387. widht:303px;
    388. height:130px;}
    389.  
    390. div.dd-head-04 {
    391. position:absolute;
    392. left:548px;
    393. top:0px;
    394. widht:274px;
    395. height:130px;}
    396.  
    397. div.dd-head-05 {
    398. position:absolute;
    399. left:822px;
    400. top:0px;
    401. widht:157px;
    402. height:164px;}
    403.  
    404. div.dd-head-07 {
    405. position:absolute;
    406. left:26px;
    407. top:130px;
    408. widht:219px;
    409. height:35px;}
    410.  
    411. div.dd-head-08 {
    412. position:absolute;
    413. left:245px;
    414. top:130px;
    415. widht:303px;
    416. height:35px;}
    417.  
    418. div.dd-head-09 {
    419. position:absolute;
    420. left:548px;
    421. top:130px;
    422. widht:274px;
    423. height:35px;}
    424.  
    425. div.dd-head-10 {
    426. position:absolute;
    427. left:26px;
    428. top:165px;
    429. widht:219px;
    430. height:41px;}
    431.  
    432. div.dd-head-11 {
    433. position:absolute;
    434. left:245px;
    435. top:165px;
    436. widht:100%;}
    437.  
    438. div.dd-head-16 {
    439. position:absolute;
    440. left:822px;
    441. top:165px;
    442. widht:156px;
    443. height:45px;}
    444.  
    445. div.dd-head-021 {
    446. position:absolute;
    447. left:245px;
    448. top:206px;}
    449. html>body div.dd-head-021  {position:absolute; left:245px; top:207px;}
    450.  
    451.  
    452. div.dd-head-latest {
    453. position:absolute;
    454. left:270px;
    455. top:210px;
    456. z-index: 800;}
    457.  
    458. div.dd-head-popular {
    459. position:absolute;
    460. left:530px;
    461. top:230px;
    462. z-index: 900;}
    463.  
    464. /* Format fьr Footer */
    465. #footer {
    466. position: relative;
    467. background:#a8a8a8;
    468. background: url(../images/foot_bg.gif) repeat-x;height:80px;
    469. padding:0;
    470. margin:0;
    471. border-top:0px solid black;
    472. font:10px verdana, sans-serif;
    473. }


    Помогите Плиззз!!! уже все перепробовала(((((((((((((((( :'(
     
  2.  
  3. Dead Krolik
    Offline

    Dead Krolik Недавно здесь => Cпециалист <=

    Регистрация:
    13.04.2007
    Сообщения:
    3 685
    Симпатии:
    101
    Пол:
    Мужской
    А эти
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    это не оно?
     
  4. Offline

    Ирина Ревин Недавно здесь

    Регистрация:
    19.08.2008
    Сообщения:
    74
    Симпатии:
    1
    Пол:
    Мужской

    я их убирала, картинка исчезла вместе со стороками новостей, но осталось пустое место.. мне нужно его убрать
    http://www.freelogos.ru/index.php?option=com_content&task=blogcategory&id=14&Itemid=29

    помогите ж кто нить !!!((
     

Поделиться этой страницей

Загрузка...