Darcie
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: problem resizing iFrame within WP (Kubrick Theme)Try this:
<iframe id=”fillin” name=”something” src=”https://yourname.com/” width=”420px” height=”400px” scrolling=”Default” ></iframe>If you cannot contain it, Try something like this:
<div id=”region”>
<iframe id=”fillin” name=”something” src=”https://yourname.com/” width=”420px” height=”400px” scrolling=”Default” ></iframe>
</div>
put this in your css an reaarange to your liking.
#region {
float: left;
padding : 2px;
border : 1px solid #cccccc;
width : 450px;
font-size : 90%;
position : relative;
height : auto;
background-color : #ffffff;
left: 10px;
top: 10px;
}My web server is down at the moment so I cannot test it for you.
Forum: Fixing WordPress
In reply to: calendar on website and blogAll I can think of after that is when you moved the blog from New to your root server, did you take out the word <New> out of the path?
https://www.northviewhockey.com/new to
https://www.northviewhockey.com/
Good Luck!
Forum: Fixing WordPress
In reply to: calendar on website and blogFrom what I understand you are not supposed to put FULL PATHS for php like <?php include(‘https://www.northviewhockey.com/blog/wp-blog-header.php’); ?>
should be more like:
<?php include(‘/blog/wp-blog-header.php’); ?>right?
Forum: Themes and Templates
In reply to: how to move sidebar from right to left side. Pool theme.you may have to change the index.php a little.
Sometimes you have do the loop calling for the sidebar first before anything else.
Forum: Themes and Templates
In reply to: how to move sidebar from right to left side. Pool theme.float: right;
to
float: left;in your #sidebar CSS
Forum: Themes and Templates
In reply to: invalid XHTML — blockquoteI have not quite figured out what Textile is for in the first place
Forum: Plugins
In reply to: Forum Pluginoops, I am sooooooo sorry…I answered it. DOH, make a topic…lol
Great release… Keep me updated.
PS Sidebar issues.. I thought I read it somewhere..I cannot find it now.
I am thinking of putting a horizantal menu underneath anyways, so it’s not really going to affect me, but others may ask.
Forum: Plugins
In reply to: Forum PluginI have it installed, and up… now here’s a stupid ?, how does one post to it? What am I missing?
Forum: Themes and Templates
In reply to: CSS and themesI see its fixed… how did you manage it? Looks great!
Forum: Themes and Templates
In reply to: CSS and themesI have a question:
#weblog {
background-color: #FFFFFF;
width: 390px;
float: left;
margin-left: 170px
}#weblog {
background-color: #FFFFFF;
\width: 560px;
w\idth: 390px;
float: left;
margin-left: 170px
}
What do these two items in your CSS relate to?
They are calling the same features.You have also centered the template in your #Container
margin: 0px auto 0px auto;Not sure why you are using the margin-left: 170px on the #Weblog part.
try taking the second #Weblog out and take out the margin-left part. You are already using floats.
Forum: Themes and Templates
In reply to: Joelonsoftware style themes!OH, then hack the sidebar with php like I have on my blog. I have percent bars there.
<h2>WIP-ersnappers</h2>
<?php
include_once(‘arrow.php’);
?>woops sorry, I forgot its, wordpress.com ?? I guess that would not work.
Forum: Themes and Templates
In reply to: Joelonsoftware style themes!how about a quick fix…
Is there not a Pages feature?
Do your About Me there.???Forum: Themes and Templates
In reply to: top align header imageI see it, the header graphic stays centered. Its a centered layout design to begin with. Here is a hack with my CSS that shifts the graphic over with the rest of the layout,
See in the Margin area: margin: 0px 500px 0px 0px; Also I positioned it static.
#rap {
position: static;
margin: 0px 500px 0px 0px;
padding: 0 0 0 0px;
text-align: left;
width: 800px;
background-color: #DCDCDC;
}My sample is on my blog, on the right bottom under Pick a Theme. : )
Forum: Themes and Templates
In reply to: top align header imageI posted the CSS on my blog.
Let me know if you need help ??Forum: Themes and Templates
In reply to: top align header imageOk, I will finish cleaning it up and post it on my blog somewhere for you to play with this evening. ??