Darcie
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Problems with stylesheetOH OK, I like it….DON”T TOUCH IT!!!! LOL
hmmm…rounded corners…..lol… don’t listen to me.
Forum: Installing WordPress
In reply to: Background not showing upLOL guess I am too late… Kudos fht!
Forum: Installing WordPress
In reply to: Background not showing upOHHHHH you do want what I think. I think?
I see your swirl is cut off.
Try taking the swirl graphic and placing into IT’s OWN DIV, make it absolute and set the positioning like…#LOOP
{
position:absolute;
left:_________px;
top:_________px;
width:_______px;
height:_________px;
z-index:1;
background-image: url(images/background6.jpg);
}Get it to fall over top of the exsisting graphic you want it to match up with, Now would you place it on the Index.php or in the Header.php??
There’s where I am lost. I may have to acutally download Kubrick and mess around with it.Let me know.
Forum: Installing WordPress
In reply to: Background not showing upI put my banner in the
#head {
position: relative;
height: 140px;
background-repeat: no-repeat;
background-position: center center;
margin: 0px;
padding: 0px 0px 0px 0px;
background-image: url(images/burst.gif);And I used divs wrapped around for the background.
I left the body alone for just text styles
Can I see the style sheet?
Forum: Installing WordPress
In reply to: Problems with stylesheetyou can make it more pink changing the background color
background-color:#FFFFFF; from white to #FFB2DFAnd maybe change the border-color:#FFB2DF; to a stronger pink color
Forum: Fixing WordPress
In reply to: using php includes on pagesNo it was actually just a php file for my progress meter. It is not plug-in ready yet. I wish someone would write me a plugin for it. If it were already a plugin I think it would not have been a prob.
I guess what I am saying is I am doing manually and maybe I should re-insert my question into another forum.
Forum: Plugins
In reply to: Forum PluginCutom Smileys 1.0 http://lazyanduseless.belike.net/wp/?p=31
I installed the Custom Smileys and it runs great, except when I try to activate your forum plugin again, Your admin panel takes over Cusotm Smileys admin panel.I love your forum and want it to work for me :)!
I will try your suggestions.
Forum: Installing WordPress
In reply to: Problems with stylesheetcan you post the CSS? So I can see it? Because it looks fine to me right now.
Forum: Installing WordPress
In reply to: Text size and style in CSSAnywhere it this is,
font-size: 9px;
Forum: Plugins
In reply to: manage uploaded fileswhen you find out, let me know. Correct me if I am wrong, do we just have to CHMOD somewhere? Or do we need a proggy.
Forum: Fixing WordPress
In reply to: WordPress with Php Include.blogg or blog?
Forum: Your WordPress
In reply to: My answer to variable widthHey I like it!
Forum: Fixing WordPress
In reply to: using php includes on pagesI could not get Include to work correctly for awhile either. The answer for me was to upload the php file to my acutal root directory not the blog directory and use this line of type.
<?
// must include this script
include(‘http://swatchnot.hender-son-s.com/arrow.php’); ?>
Want the code?I will have to try the above as well.
Forum: Fixing WordPress
In reply to: Listing Pages under categoriesoops forgot the sample CSS you will need to include:
.polaroidtext {
color: #FDF5E6;
position: static;
top: -0px;
font-size: 100%;
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
text-align: center;
background-color: #1E90FF;
}Forum: Fixing WordPress
In reply to: Listing Pages under categoriesAnswer to question 1
<h2 class=”polaroidtext2″> Hello my headline </h2>
or
<div class=”polaroidtext2″><?php _e(‘My Categories:’); ?></div>
How bout that?