View Single Post
  #3 (permalink)  
Old 07-26-2007, 10:49 PM
b1caez01's Avatar
b1caez01 b1caez01 is offline
Senior Member
 
About:
Join Date: Dec 2006
Posts: 220
b1caez01 is an unknown quantity at this point

Default Be patient please...


mhookem: do we not have a web page forum? It may be another one to begin. There must be tons of us wannabe html writers out here This is only the first issue that I am dealing with. And having fun in the process

Since there are only three body tags, one near the top, and one at the bottom, with almost the entire template in between, I am at a loss as to just where to put the scrip you sent. My I send you a copy of the template off-line/forum?

What I have been doing is experimenting with inserting this and that script all over the place, one at a time, and seeing what the results are. And what works on one template does not seem to work on another, even though they are templates from the same blogspot.com site...just different coloured backgrounds.

<div align="center">
<br />
<br />
<a href="<A href="http://www.google.com/"><img">http://www.google.com/"><img src="http://www.google.com/intl/en_ALL/images/logo.gif" alt="" width="158" height="60" /></a>
</dd>
</div>

Where exactly does this go?

By the way I have my background set at 1000 and my content set at 750 and my sidebar set at 245. So, 158 would easily fit into the sidebar.
--------------------------------------------------------------------------

/* Outer-Wrapper
----------------------------------------------- */
#outer-wrapper {
width: 1000px;
margin:0 auto;
padding:10px;
text-align:left;
font: $bodyfont;
}

#main-wrapper {
width: 750px;
float: left;
word-wrap: break-word; /* fix for long text breaking sidebar float in IE */
overflow: hidden; /* fix for long non-text content breaking IE sidebar float */
}

#sidebar-wrapper {
width: 245px;
float: right;
word-wrap: break-word; /* fix for long text breaking sidebar float in IE */
overflow: hidden; /* fix for long non-text content breaking IE sidebar float */
}

--------------------------------------------------------------------------

Here is the section which I discovered was the place to insert scripts, it's near the bottom of the template:

</head>

<body>
<div id='outer-wrapper'><div id='wrap2'>

<!-- skip links for text browsers -->
<span id='skiplinks' style='display:none;'>
<a href='#main'>skip to main </a> |
<a href='#sidebar'>skip to sidebar</a>
</span>

<div id='header-wrapper'>
<b:section class='header' id='header' maxwidgets='1' showaddelement='no'>
<b:widget id='Header1' locked='true' title='Template Testing (Header)' type='Header'/>
</b:section>
</div>

<div id='content-wrapper'>

<div id='crosscol-wrapper' style='text-align:center'>
<b:section class='crosscol' id='crosscol' showaddelement='no'/>
</div>

<div id='main-wrapper'>
<b:section class='main' id='main' showaddelement='no'>
<b:widget id='Blog1' locked='true' title='Blog Posts' type='Blog'/>
</b:section>
</div>

<div id='sidebar-wrapper'>
<b:section class='sidebar' id='sidebar' preferred='yes'>
<b:widget id='BlogArchive1' locked='false' title='Blog Archive' type='BlogArchive'/>
<b:widget id='Profile1' locked='false' title='About Me' type='Profile'/>
</b:section>
</div>

<!-- spacer for skins that want sidebar and main to be the same height-->
<div class='clear'> </div>

</div> <!-- end content-wrapper -->

<div id='footer-wrapper'>
<b:section class='footer' id='footer'/>
</div>

</div></div> <!-- end outer-wrapper -->
</body>
</html>
--------------------------------------------------------------------------



Reply With Quote