FITTED Posted February 11, 2009 Share Posted February 11, 2009 Hi, I'm getting this full error: Parse error: parse error, unexpected T_STRING in /home/content/c/u/z/cuzzo/html/updates/w... on line 39 And this is line 39: <?php else : ?> Here is the full thing: <?php if ($comment->comment_approved == '0') : ?> <div class="under-mod">Your Comment Is Under Moderation </div> <?php else : ?> <div class="c-right"><?php echo get_avatar( $id_or_email, $size = '50', $default = '<?php bloginfo('stylesheet_directory'); ?>/images/mygif.gif' ); ?> </div> </div> Am I missing something here? Quote Link to comment https://forums.phpfreaks.com/topic/144838-solved-urgent-please-question-about-unexpected-t_string-error-what-do-i-need-to-fix/ Share on other sites More sharing options...
Maq Posted February 11, 2009 Share Posted February 11, 2009 comment_approved == '0') { ?> Your Comment Is Under Moderation echo get_avatar( $id_or_email, $size = '50', $default = '/images/mygif.gif' ); } ?> Quote Link to comment https://forums.phpfreaks.com/topic/144838-solved-urgent-please-question-about-unexpected-t_string-error-what-do-i-need-to-fix/#findComment-760028 Share on other sites More sharing options...
trq Posted February 11, 2009 Share Posted February 11, 2009 <?php if ($comment->comment_approved == '0') : ?> <div class="under-mod">Your Comment Is Under Moderation </div> <?php else : ?> <div class="c-right"><?php echo get_avatar( $id_or_email, 50, bloginfo('stylesheet_directory') . '/images/mygif.gif'); ?> </div> </div> Quote Link to comment https://forums.phpfreaks.com/topic/144838-solved-urgent-please-question-about-unexpected-t_string-error-what-do-i-need-to-fix/#findComment-760041 Share on other sites More sharing options...
FITTED Posted February 11, 2009 Author Share Posted February 11, 2009 Thank you! I fixed it and had another error on line 53, but quickly fixed it too. Now, here is the blog I am working on: http://fittedhawaii.com/updates/ I'm wondering how do I change the borders next to the logo banner to the specific Hex we normally work with? Also, how do I change the main boxes and boxes to the left (brown) black and all text to yellow? I've been trying so hard to find the right lines in the Style CSS to change it, but to no avail. Here is the full code for the Style sheet: /* Theme Name: IkarusWhite Theme Style: Magazine/Blog/List/Magazine List Ttyle Theme Theme URI: http://www.wpthemespress.com Description: Magazine, Blog or List styled 3 column widget ready theme with 10 color variations and over 2,000 admin configurable options. Author: 5 Shades Templates Author URI: http://www.webhostingrally.com Tags: Premium, Web 2.0, 3 Column, Widgets, Magazine Version: 1.0 Copyright 2007-2008 wpthemespress.com */ /* backened control css - configurations.php */ /* WP 2.5 and above CSS --------------------------------------------------------- */ .wp-caption { border: 1px solid #ddd; text-align: center; background-color: #ffd000; padding-top: 4px; margin: 10px; -moz-border-radius: 3px; -khtml-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; } .wp-caption img { margin: 0; padding: 0; border: 0 none; } .wp-caption-dd { font-size: 11px; line-height: 17px; padding: 0 4px 5px; margin: 0; } .aligncenter { display: block; margin-left: auto; margin-right: auto; } .alignleft { float: left; } .alignright { float: right; } /* COMMON STYLE --------------------------------------------------------- */ html, body, form, fieldset { margin: 0; padding: 0; } body#bd { padding: 0; color: #FFD000; background: url(images/body-bg.jpg) repeat-x top #000000; } .digg { background: url(images/socials/social.gif) -77px; } .delicious { background: url(images/socials/social.gif) -50px; } .stumble { background: url(images/socials/social.gif) -23px; } .tech { background: url(images/socials/social.gif) -1px; } .blinklist { background: url(images/socials/blinklist.png) no-repeat center; } .blogmark { background: url(images/socials/blogmarks.png) no-repeat center; } .bumpzee { background: url(images/socials/bumpzee.png) no-repeat center; } .dzone { background: url(images/socials/dzone.png) no-repeat center; } .furl { background: url(images/socials/furl.png) no-repeat center; } .netscape { background: url(images/socials/netscape.gif) no-repeat center; } .netvouz { background: url(images/socials/netvouz.png) no-repeat center; } .reddit { background: url(images/socials/reddit.png) no-repeat center; } .scopeo { background: url(images/socials/scoopeo.png) no-repeat center; } .scuttle { background: url(images/socials/scuttle.png) no-repeat center; } .spurl { background: url(images/socials/spurl.png) no-repeat center; } .taggly{ background: url(images/socials/taggly.png) no-repeat center; } .thisnext { background: url(images/socials/thisnext.png) no-repeat center; } .wists { background: url(images/socials/wists.png) no-repeat center; } .yahooweb { background: url(images/socials/yahoomyweb.png) no-repeat center; } #flickr-roll { float: left; padding: 5px 0px 10px 0px; } #flickr-roll ul { float: left; margin: 0px; padding: 0px; } #flickr-roll ul ul { float: left; margin: 0px; padding: 0px; list-style-type: none; } #flickr-roll ul li { float: left; margin: 0px; padding: 5px; height: 68px; width: 68px; } #flickr-roll li img { height: 63px; width: 63px; margin: 0px; padding: 0px; float: left; display: block; border: 1px solid #333333; } #flickr-roll li img:hover { height: 63px; width: 63px; margin: 0px; padding: 0px; float: left; display: block; border: 1px solid #666666; } /* Normal link */ a { color: #ffd000; text-decoration: none; } a:hover, a:active, a:focus { color: #666666; text-decoration: none; } /* Heading */ h1 { font-size: 175%; } h2 { font-size: 150%; } h3 { font-size: 125%; } h4 { font-size: 100%; text-transform: uppercase; } /* Title text */ .contentheading, .componentheading, .blog_more strong, h1, h2, h3 { font-weight: normal; } /* Small text */ small, .small, .smalldark, .mosimage_caption, .createdate { color: #FFD000; font-size: 80%; } p, pre, blockquote, ul, ol, h1, h2, h3, h4, h5, h6 { margin: 15px 0; padding: 0; } ul { list-style: none; } ul li { padding-left: 10px; line-height: 180%; } ol li { margin-left: 35px; line-height: 180%; } th { padding: 5px; font-weight: bold; text-align: left; } fieldset { border: none; } fieldset a { font-weight: bold; } hr { border-top: 1px solid #000000; border-right: 0; border-left: 0; border-bottom: 0; height: 1px; } a img { border: none; } td, div { font-size: 100%; } /* FORM --------------------------------------------------------- */ form { margin: 0; padding: 0; } form label { cursor: pointer; } input, select, textarea, .inputbox { padding: 1px; font-family: Tahoma, Arial, sans-serif; font-size: 100%; } select, textarea, .inputbox { background: #FFD000; color: #000000; } .button { padding: 3px 8px; border-top: 1px solid #000000; border-right: 1px solid #000000; border-bottom: 1px solid #000000; border-left: 1px solid #000000; color: #000000; background: url(images/grad1.gif) repeat-x center #763b02; } * html .button, *+html .button { padding: 2px 5px !important; } .inputbox { margin-bottom: 1px; padding: 3px 2px; border-top: 1px solid #000000; border-right: 1px solid #000000; border-bottom: 1px solid #000000; border-left: 1px solid #000000; background: url(images/input-bg.gif) repeat-x top #000000; } .inputbox:hover, .inputbox:focus { } /* BONUS TYPOGRAPHY STYLES --------------------------------------------------------- */ pre, .code { padding: 10px 15px; margin: 5px 0 15px; border-left: 5px solid #000000; background-color: #000000; color: #000000; } blockquote { padding: 1em 50px 1em 15px; margin: 10px 20px 0px 20px; padding: 3px 0 3px 20px; background: url(images/so-q.gif) no-repeat left top; border-right: 5px solid #333333; font-family:"Courier New", Courier, monospace; } /* Dropcap */ .dropcap { float: left; padding: 4px 8px 0 0; display: block; color: #000000; font: 50px/40px Georgia, Times, serif; } /* Tips, Error, Message, Hightlight*/ .error { padding-left: 25px; color: #FF4444; background: url(images/bullet-error.gif) no-repeat top left; } .message { padding-left: 25px; color: #763b02; background: url(images/bullet-info.gif) no-repeat top left; } .tips { padding-left: 25px; color: #469EC0; background: url(images/bullet-tips.gif) no-repeat top left; } .highlight { padding: 1px 5px; background: #763b02; font-weight: bold; } /* Note Style */ p.stickynote { padding: 10px 0px 20px 50px; border: 1px solid #464646; background: url(images/sticky-bg.gif) no-repeat 5px 10px #2A2A2A; color: #FFFFFF; } p.download { padding: 10px 0px 20px 50px; border: 1px solid #464646; background: url(images/download-bg.gif) no-repeat 5px 10px #2A2A2A; color: #FFFFFF; } .blocknumber { clear: both; padding: 5px 15px 10px; position: relative; } /* Check list */ ul.checklist { list-style: none; } ul.checklist li { margin-left: 15px; padding: 0 0 5px 20px; background: url(images/checklist-bg.gif) no-repeat 0 3px; } /* Check list */ ul.stars { list-style: none; } ul.stars li { margin-left: 15px; padding: 0px 0 5px 20px; background: url(images/star-bg.gif) no-repeat 0 3px; } #post-index ul { list-style: none; } #post-index img { border: 1px solid #666666; padding: 3px; margin: 5px; } #post-index ul li { margin-left: 15px; padding: 0px 0 5px 20px; background: url(images/star-bg.gif) no-repeat 0 3px; } /* Smallnumber */ ol.smallnumber { margin: 0; padding: 0; list-style: none; } ol.smallnumber li { margin: 10px 0 10px 30px; padding: 3px 0 5px 30px; line-height: 150%; } ol.smallnumber li.number-1 { background: url(images/n-1.gif) no-repeat left top; } ol.smallnumber li.number-2 { background: url(images/n-2.gif) no-repeat left top; } ol.smallnumber li.number-3 { background: url(images/n-3.gif) no-repeat left top; } ol.smallnumber li.number-4 { background: url(images/n-4.gif) no-repeat left top; } ol.smallnumber li.number-5 { background: url(images/n-5.gif) no-repeat left top; } ol.smallnumber li.number-6 { background: url(images/n-6.gif) no-repeat left top; } ol.smallnumber li.number-7 { background: url(images/n-7.gif) no-repeat left top; } ol.smallnumber li.number-8 { background: url(images/n-8.gif) no-repeat left top; } ol.smallnumber li.number-9 { background: url(images/n-9.gif) no-repeat left top; } /* Bignumber */ .bignumber { float: left; margin-right: 8px; padding: 6px 7px; display: block; color: #ffffff; background: url(images/ol-bg.gif) no-repeat top left; font: 20px/normal Arial, sans-serif; font-weight: bold; } /* Talking box. Thinking box. */ div.bubble1, div.bubble2, div.bubble3, div.bubble4 { margin: 15px 0; } div.bubble1 span.author, div.bubble2 span.author, div.bubble3 span.author, div.bubble4 span.author { padding-left: 15px; margin-left: 15px; background: url(images/author.gif) no-repeat center left; font-weight: bold; } div.bubble1 div { margin: 0; width: 100%; background: url(images/bub1-br.gif) no-repeat bottom right; } div.bubble1 div div { background: url(images/bub1-bl.gif) no-repeat bottom left; } div.bubble1 div div div { background: url(images/bub1-tr.gif) no-repeat top right; } div.bubble1 div div div div { background: url(images/bub1-tl.gif) no-repeat top left; } div.bubble1 div div div div div { margin: 0; padding: 15px 15px 30px 15px; width: auto; } div.bubble2 div { margin: 0; width: 100%; background: url(images/bub2-br.gif) no-repeat bottom right; } div.bubble2 div div { background: url(images/bub2-bl.gif) no-repeat bottom left; } div.bubble2 div div div { background: url(images/bub2-tr.gif) no-repeat top right; } div.bubble2 div div div div { background: url(images/bub2-tl.gif) no-repeat top left; } div.bubble2 div div div div div { margin: 0; padding: 15px 15px 35px 15px; width: auto; } div.bubble3 div { margin: 0; width: 100%; background: url(images/bub3-br.gif) no-repeat bottom right; } div.bubble3 div div { background: url(images/bub3-bl.gif) no-repeat bottom left; } div.bubble3 div div div { background: url(images/bub3-tr.gif) no-repeat top right; } div.bubble3 div div div div { background: url(images/bub3-tl.gif) no-repeat top left; } div.bubble3 div div div div div { margin: 0; padding: 15px 15px 50px 15px; width: auto; } div.bubble4 div { margin: 0; width: 100%; background: url(images/bub4-br.gif) no-repeat bottom right; } div.bubble4 div div { background: url(images/bub4-bl.gif) no-repeat bottom left; } div.bubble4 div div div { background: url(images/bub4-tr.gif) no-repeat top right; } div.bubble4 div div div div { background: url(images/bub4-tl.gif) no-repeat top left; } div.bubble4 div div div div div { margin: 0; padding: 15px 15px 55px 15px; width: auto; } /* Legend */ .legend-title { margin: 0; padding: 0 3px; float: left; display: block; background-color: #000000; color: #666666; font-weight: bold; position: absolute; top: -12px; left: 7px; } .legend { margin: 20px 0; padding: 0 10px; border: 1px solid #666666; background-color: #fbfbfb; position: relative; } /* JOOMLA STYLE --------------------------------------------------------- */ table.blog { } .article_seperator { display: block; background: url(images/seperator.gif) no-repeat center; height: 40px; } #col1 .article_seperator, #col2 .article_seperator { display: none; } table.contentpane { border: none; width: 100%; } table.contentpaneopen { border: none; border-collapse: collapse; border-spacing: 0; } table.contenttoc { margin: 0 0 10px 10px; padding: 0; width: 35%; } table.contenttoc a { } table.contenttoc td { padding: 3px 5px 3px 22px; background: url(images/arrow.png) no-repeat 10px 9px; } table.contenttoc th { padding: 5px; border-top: 1px solid #464646; border-right: 1px solid #1F1F1F; border-bottom: 1px solid #1F1F1F; border-left: 1px solid #464646; background: url(images/grad2.gif) repeat-x top #333333; font-weight: bold; text-indent: 5px; } table.poll { padding: 0; width: 100%; border-collapse: collapse; } table.pollstableborder { padding: 0; width: 100%; border: none; text-align: left; } table.pollstableborder .sectiontableheader { padding: 8px 5px !important; } table.pollstableborder img { vertical-align: baseline; } table.pollstableborder td { padding: 2px!important; border-collapse: collapse; border-spacing: 0; } table.pollstableborder tr.sectiontableentry1 td { border: none; background: #464646; } table.pollstableborder tr.sectiontableentry2 td { border: none; } table.searchintro { padding: 10px 0; width: 100%; } table.searchintro td { padding: 5px!important; } table.adminform { width: 400px!important; /*Control the Frontend Editor area width*/ } .adminform .inputbox { } .blog_more { margin: 10px 0; } .blog_more strong { margin: 0 0 5px; display: block; font-size: 155%; line-height: 30px; } .blog_more ul { margin: 0; padding: 0; } .blog_more ul li { margin: 0; padding: 0 0 0 24px; background: url(images/arrow.png) no-repeat 12px 5px; } td.buttonheading { padding: 0 0 0 8px!important; text-align: center; } .category { font-weight: bold; } .clr { clear: both; } .componentheading { padding: 0 0 15px 0; margin-bottom: 20px; background: url(images/hdot2.gif) repeat-x bottom; font-size: 200%; } .contentdescription { padding-bottom: 30px; } .contentheading { padding-bottom: 5px; font-size: 200%; } a.contentpagetitle { color: #EFEFEF; } a.contentpagetitle:hover, a.contentpagetitle:active, a.contentpagetitle:focus { color: #763b02; text-decoration: none; } table.contentpaneopen td, table.contentpane td { } table.contentpaneopen, table.contentpane, table.blog { width: 100%; } .createdate { padding: 2px; } .modifydate { color: #666666; height: 15px; } .moduletable { padding: 0; } .pagenav, .pagenav_prev, .pagenav_next, .pagenavbar { padding: 0 2px; } a.pagenav, .pagenav_prev a, .pagenav_next a, .pagenavbar a { } a.pagenav:hover, a.pagenav:active, a.pagenav:focus, .pagenav_prev a:hover, .pagenav_prev a:active, .pagenav_prev a:focus, .pagenav_next a:hover, .pagenav_next a:active, .pagenav_next a:focus, .pagenavbar a:hover, .pagenavbar a:active, .pagenavbar a:focus { } .pagenavbar { padding-left: 14px; background: url(images/pages.gif) no-repeat center left; } .pagenavcounter { padding: 8px 14px 0 14px; background: url(images/pages.gif) no-repeat 0 11px; } .sectiontableheader { padding: 5px; border-top: 1px solid #464646; border-right: 1px solid #1F1F1F; border-bottom: 1px solid #1F1F1F; border-left: 1px solid #464646; background: url(images/grad2.gif) repeat-x top #333333; font-weight: bold; } tr.sectiontableentry1 td { padding: 7px 5px; background: url(images/hdot.gif) repeat-x bottom; } tr.sectiontableentry2 td { padding: 7px 5px; background: url(images/hdot.gif) repeat-x bottom; } tr.sectiontableentry1:hover td, tr.sectiontableentry2:hover td { background: url(images/hdot.gif) repeat-x bottom #464646; } .smalldark { text-align: left; } div.syndicate div { text-align: center; } .pollstableborder tr.sectiontableentry1 td, .pollstableborder tr.sectiontableentry2 td { background: none; } /* MAIN LAYOUT DIVS --------------------------------------------------------- */ #header, #mainnav, #topsl, #pathwaywrap, #container, #botsl, #footer { width: 920px; margin: 0 auto; clear: both; } /* PRIMARY COLUMN --------------------------------------------------------- */ #content-top { background: url(images/content-top.gif) no-repeat top; } #content-bot { background: url(images/content-bot.gif) no-repeat bottom; } #content div.innerpad { clear: both; margin: 0; padding: 20px; display: block; height: 300px; } html>body #content div.innerpad { height: auto; min-height: 300px; } /* SECONDARY COLUMNS --------------------------------------------------------- */ #tabswrap .nolist { margin: 0px; padding: 0px; float: left; width: 380px; list-style-type: none; font-size: 1em; line-height: 18px; } #tabswrap .nolist ul { margin: 0px; padding: 0px; float: left; width: 380px; } #tabswrap .nolist li { margin: 0px 0px 5px; padding: 0px; float: left; width: 380px; line-height: 24px; color: #000000; } #tabswrap .nolist ul li { margin: 5px 0px 0px; padding: 0px; float: left; width: 263px; color: #000000; } #tabswrap .nolist li a { color: #000000; text-decoration: none; margin: 0px; padding: 0px; float: left; } #tabswrap .nolist li a:hover { color: #000000; text-decoration: none; margin: 0px; padding: 0px; float: left; } #masscol { margin-bottom: 10px; width: 100%; float: left; display: block; } #col1 { float: left; width: 50%; overflow: hidden; } #col1 div.innerpad{ padding: 0 5px 0 0; } #col2 { float: right; width: 49.9%; overflow: hidden; } #col2 div.innerpad{ padding: 0 5px 0 0; } #col1 table, #col2 table { border-collapse: collapse; border-spacing: 0; } #col1 ul, #col2 ul { margin: 0; padding: 0; } #col1 ul li, #col2 ul li { padding-left: 13px; background: url(images/arrow.png) no-repeat 2px 8px; } /* COLLAPSIBLE LAYOUT --------------------------------------------------------- */ #containerwrap, #containerwrap-cm, #containerwrap-c, #containerwrap-f { padding: 0; } #container { padding: 10px 0; } /* full */ #containerwrap-f #content { width: 100%; float: none; } /* content + col + mass */ #containerwrap-cm { } #containerwrap-cm #container { background: none; } #containerwrap-cm #col1, #containerwrap-cm #col2 { width: 100%; } /* content + col */ #containerwrap-c #content { width: 78%; } #containerwrap-c #colwrap { width: 22%; } #containerwrap-c #colwrap div.innerpad { background: none; } #containerwrap-c #col1, #containerwrap-c #col2 { width: 100%; } /* content + mass */ #containerwrap-m { } #containerwrap-m #container { } /* HEADER --------------------------------------------------------- */ #header { height: 140px; position: relative; z-index: 999; } #header p {padding-left: 25px;} h1.logo { margin: 0; padding: 0; width: 265px; font-size: 300%; position: absolute; top: 20px; left: 20px; height: 75px; } h1.logo a { width: 265px; float: left; display: block; background: url(images/logo.png) no-repeat; color: #ffd000; text-transform: uppercase; text-indent: -5000px; height: 75px; outline: none; } h1.sitename { margin: 0; width: 365px; font-size: 35px; position: absolute; padding-top: 30px; padding-left: 20px; line-height: 40px; } .post-title { line-height: 24px;} h1.sitename a { width: 365px; float: left; color: #ffd000; } h1.sitename a:hover { width: 365px; float: left; color: #ffd000; text-decoration: none; } /* Search */ #search { width: 157px; background: url(images/search-bg.png) no-repeat; line-height: 28px; position: absolute; float: right; top: 3px; right: 20px; height: 28px; } #rss-feeds { float: left; width: 285px; background: url(images/rss.png) no-repeat left; height: 35px; margin-left: 10px; } #rss-block { float: left; height: 31px; width: 30px; } #rss-block a { color: #FFD000; text-decoration: none; display: block; float: left; height: 31px; width: 45px; text-align: center; } #rs-count { float: left; width: 200px; padding-top: 5px; font-size: 1.1em; font-weight: bold; color: #000000; line-height: 20px; margin: 0px; } #rs-count p { margin: 0px; padding: 0px; } #rs-count a { color: #000000; text-decoration: none; } #search .inputbox { width: 100px; padding: 0; border: none; margin: 7px 0 0 10px; background: none; color: #000000; } * html #search .inputbox, *+html #search .inputbox { margin: 1px 0 0 10px; !important: ; } /* MAIN NAVIGATION --------------------------------------------------------- */ #mainnav { padding-top: 6px; background: url(images/mainnav-bg.png) no-repeat; line-height: normal; position: absolute; bottom: 0; } #mainnav a, #mainnav a:hover, #mainnav a:active, #mainnav a:focus { outline: none; } /* Default Joomla! Menu */ a.sublevel { padding: 5px 4px 5px 15px; display: block; background: url(images/bullet-list.gif) no-repeat 5px 11px; color: #ffd000; } a.sublevel:hover, a.sublevel:active, a.sublevel:focus { color: #000000; text-decoration: none; } #active_menu { color: #000000; font-weight: bold; } #pathwaywrap { padding: 0; display: block; color: #000000; background: url(images/pathway-bg.gif) no-repeat; text-indent: 20px; height: 45px; position: relative; } #pathway { position: absolute; top: 8px; left: 0; } #pathway strong { margin-right: 10px; } #pathway img { margin: 0 5px 1px; } #pathway a { font-weight: bold; } /*common style for module*/ div.module div div div div, div.module-hilite div div div div, div.module-notitle div div div div { margin: 0; padding: 0; float: none; background: none; overflow: hidden; } div.module .article_seperator, div.module-hilite .article_seperator, div.module-notitle .article_seperator { display: none; } .innerdiv { float: left; width: 100%; clear: both; } /* SPOTLIGHT --------------------------------------------------------- */ /* Spotlight Box Style */ .box-left, .box-center, .box-right { float: left; overflow: hidden; } .box-full { float: none; overflow: hidden; } #botsl div.moduletable { padding: 15px 10px; } #botsl div.bot-right { background: none; } div.box-leftcol { float: left; } /* Top Spotlight */ #topsl { background: font-size: 115%; height: 180px; } #topsl h3 { padding: 0; margin: 2px 0 15px; font-size: 200%; } #topsl h3 a, #topsl h3 a:hover, #topsl h3 a:active, #topsl h3 a:focus { color: #000000; text-decoration: none; } #topsl div.moduletable { padding: 0; margin: 0; } #topsl .newflash { padding-left: 6px; padding-top: 2px; } #topsl .newflash .moduletable{ padding: 30px 20px 30px 400px; width: 500px; } #topsl ul { margin: 0; padding: 0; } #topsl li { padding-left: 12px; margin: 0; background: url(images/arrow.png) no-repeat 2px 10px; } /* Bottom Spotlight */ #botsl { background: no-repeat; color: #FFD600; } #botsl h3 { margin: 0 0 5px; padding: 5px 5px 5px 24px; background: no-repeat 0px 6px; font-size: 110%; font-weight: bold; color: #FFD000; } /* Common Style for Spotlight */ #topsl a, #botsl a { } #topsl a:hover, #topsl a:active, #topsl a:focus, #botsl a:hover, #botsl a:active, #botsl a:focus { color: #763b02; } #topsl td, #botsl td { padding: 0; } #topsl .article_seperator, #botsl .article_seperator { display: none; } #topsl table, #botsl table { border-collapse: collapse; border-spacing: 0; } /* FOOTER --------------------------------------------------------- */ #footerwrap-default { clear: both; background: url(images/footer-bg.png) repeat-x top #000000; } #footerwrap-dark { clear: both; background: url(images/footer-bg.png) repeat-x top #1F1F1F; } #footerwrap-blue { clear: both; background: url(images/footer-bg.png) repeat-x top #0076a3; } #footerwrap-green { clear: both; background: url(images/footer-bg.png) repeat-x top #4c8b02; } #footerwrap-red { clear: both; background: url(images/footer-bg.png) repeat-x top #920000; } #footerwrap-pink { clear: both; background: url(images/footer-bg.png) repeat-x top #e33e6d; } #footerwrap-lilac { clear: both; background: url(images/footer-bg.png) repeat-x top #7e407d; } #footerwrap-orange { clear: both; background: url(images/footer-bg.png) repeat-x top #da7009; } #footerwrap-amber { clear: both; background: url(images/footer-bg.png) repeat-x top #e1c400; } #footerwrap-olive { clear: both; background: url(images/footer-bg.png) repeat-x top #95a208; } #footerwrap-olive { clear: both; background: url(images/footer-bg.png) repeat-x top #95a208; } #footerwrap-royalblue { clear: both; background: url(images/footer-bg.png) repeat-x top #0035ac; } #footer { padding: 30px 0; position: relative; } #footer small, #footer address { padding: 0 0 0 10px; float: left; display: block; color: #ffd000; font-style: normal; } #footer a { color: #ffd000; } #footer a:hover, #footer a:active, #footer a:focus { color: #ffd000; } #footer ul { margin: 0 0 5px 20px; padding: 0; } .footer-block li { padding-left: 13px; background: url(images/arrow.png) no-repeat 2px 8px; } #footer li { margin: 0; padding: 0; display: inline; background: none; } #footer li a { padding: 0 20px 0 0; display: inline; font-weight: bold; line-height: normal; } /* MISCELLANOUS ----------------------------------------------------------- */ ul.accessibility { position: absolute; top: -100%; } #banner { text-align: center; position: absolute; right: 10px; top: 25px; } /* Clearfix */ .clearfix:after { clear: both; display: block; content: "."; height: 0; visibility: hidden; } * html > body .clearfix { width: 100%; display: block; } * html .clearfix { height: 1%; } /* Firefox Scrollbar Hack - Do not remove */ html { margin-bottom: 1px; height: 100%!important; height: auto; } #user-panel { height: 20px; width: 920px; padding-left:20px; } #user-panel ul { margin: 0px; padding: 0px; float: left; height: 20px; list-style-type: none; display: inline; } #user-panel li { margin: 0px; padding: 0px; font-size: 11px; float: left; height: 20px; list-style-type: none; display: inline; } #user-panel ul li { font-size: 11px; line-height: 20px; color: #ffffff; display: inline; margin: 5px; padding: 0px; float: left; } #user-panel a { margin: 0px 15px 0px 0px; padding: 0px; color: #cccccc; font-weight: bold; text-decoration: none; } #user-panel a:hover { color: #666666; text-decoration: underline; } .social { margin-bottom: 40px; padding: 0px; font-size: 11px; } .social-tools { float: left; width: 420px; margin: 0px; padding: 0px; } .social-tools p { float: left; height: 20px; width: 24px; text-align: center; margin: 0px; padding: 0px; } .social-tools p a { font-size: 1px; color: #FFFFFF; text-decoration: none; display: block; height: 20px; width: 24px; } .post-status { margin: 0px; padding: 0px; width: 420px; } .comment-stats { float: right; font-size: 1em; line-height: 17px; color: #999999; display: inline; margin: 0px; padding: 0px; text-align: right; width: 110px; } .comment-stats a { background: url(images/double_comment.gif) no-repeat left center; margin: 0px; padding-left: 13px; display: block; float: right; text-decoration: none; } #comments-template { margin: 0px; padding: 0px; width: 445px; } #comments-template h4 { font-size: 1.25em; color: #999999; line-height: 40px; margin: 0px; padding: 0px; width: 100%; } .rss-subscribes { margin: 0px 0px 10px 0px; padding: 0px 0px 0px 35px; background: url(images/49.png) no-repeat left center; line-height: 32px; } #comments-template h5 { color: #666666; line-height: 40px; margin: 0px; padding: 1em 0px 0px; display: block; width: 100%; } .comment-user { line-height: 17px; margin: 0px; padding: 0px; } .comment-list { float: left; width: 100%; padding: 10px; border-bottom: 1px solid #EEEEEE; } .comment-list-alt { float: left; width: 100%; padding: 10px; border-bottom: 1px solid #EEEEEE; background: #CCCCCC; } .aut { font-family: Georgia, "Times New Roman", Helvetica, sans-serif; font-weight: bold; font-size: 1.2em; } .aut a { color: #990000; text-decoration: none; } .under-mod { float: left; font-size: 0.75em; line-height: 18px; font-style: italic; font-weight: bold; } .c-right { float: right; height: 56px; width: 56px; color: #CEC8AC; text-align: center; font-size: 9px; } .c-right img { margin: 5px; padding: 3px; border: 1px solid #666666; } #comment-form { margin: 0px; float: left; padding-top: 1em; } #comment-form label { line-height: 18px; margin: 0px; padding: 0px; font-weight: bold; } #comment-form p { margin: 0px 0px 0.4375em; padding: 0px; line-height: 17px; color: #666666; } .input-box { background: #F9F9F9; padding: 1px; width: 300px; font-weight: bold; border-top: 1px solid #A7A7A7; border-right: 1px solid #A7A7A7; border-bottom: 1px solid #BCBCBC; border-left: 1px solid #BCBCBC; } .input-area { background: #F9F9F9; padding: 1px; height: 200px; width: 400px; font-weight: bold; border-top: 1px solid #A7A7A7; border-right: 1px solid #A7A7A7; border-bottom: 1px solid #BCBCBC; border-left: 1px solid #BCBCBC; } .post-features { clear: both; height: 1%; padding-right: 0; padding-left: 0; } .fl{ float: left; } .fr{ float: right; } .post-features .post{ width: 225px; border:3px solid #999999; margin-bottom: 10px; } .post-features .post h1{ font-size: 18px; padding: 0px 10px 0px 10px; line-height: 20px; } .post-features .post p{ padding: 0px 10px 10px; } .post-features .post img{ border: 1px solid #333333; float: right; padding: 3px; background-color: #FFFFFF; width: 100px; height: 65px; margin: 5px; } h3.posted{ font-size: 11px; color: #666666; font-style: normal; font-weight: normal; line-height: 15px; background-color: #333333; padding: 5px; margin-top: 10px; border-top:1px solid #292929; } .post-list .post{ margin-bottom: 10px; } #post img {padding: 3px; margin: 5px;} .post-list .post h1{ font-size: 22px; padding: 0px 10px 0px 10px; line-height: 24px; } .post-list .post p{ padding: 0px 10px 10px; } .post-list .post img{ border: 1px solid #000000; float: right; padding: 3px; background-color: #000000; width: 100px; height: 65px; margin: 5px; } h3.posted{ font-size: 11px; color: #666666; font-style: normal; font-weight: normal; line-height: 15px; background-color: #333333; padding: 5px; margin-top: 10px; border-top:1px solid #292929; } .side-feat { margin: 5px 0px 10px 0px; padding: 0px 0px 8px; float: left; border-bottom: 1px solid #666666; width: 100%; } .side-feat h1 { font-size: 1.5em; line-height: 19px; margin: 0px; padding: 0px; } .side-feat img { margin: 5px 5px 5px 0px; padding: 3px; width: 100px; height:100px; float: left; } /* WP Styles */ Quote Link to comment https://forums.phpfreaks.com/topic/144838-solved-urgent-please-question-about-unexpected-t_string-error-what-do-i-need-to-fix/#findComment-760052 Share on other sites More sharing options...
trq Posted February 11, 2009 Share Posted February 11, 2009 I'm wondering how do I change the borders next to the logo banner to the specific Hex we normally work with? Also, how do I change the main boxes and boxes to the left (brown) black and all text to yellow? I've been trying so hard to find the right lines in the Style CSS to change it, but to no avail. Here is the full code for the Style sheet: You'll want to ask these questions in our css board. Quote Link to comment https://forums.phpfreaks.com/topic/144838-solved-urgent-please-question-about-unexpected-t_string-error-what-do-i-need-to-fix/#findComment-760061 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.