nerdanita
Forum Replies Created
-
Forum: Themes and Templates
In reply to: links have spacsEvery link is into a <p> </p> tag, and in the style.css file (wp-content/themes/lightword/style.css) , the “p” element has margin-bottom:15px, thats the reason.
Forum: Themes and Templates
In reply to: Replacing Theme HeaderCheck the style.css file
“Look into your css file (/wp-content/themes/company-website-001/style.css)”There is the code that you should change. Good luck!
Forum: Themes and Templates
In reply to: Replacing Theme HeaderCheck the permissions of the file
Forum: Themes and Templates
In reply to: Replacing Theme HeaderDid you see what i posted? :S
Forum: Themes and Templates
In reply to: Replacing Theme HeaderI saw how to solve it….
Look into your css file (/wp-content/themes/company-website-001/style.css) “#header” then change the background property from
"background: url(https://dailyniches.net/wp-content/themes/company-website-001/header.jpg) no-repeat 50% 0%;"
to"background: url(https://dailyniches.net/wp-content/themes/company-website-001/img/header.jpg) no-repeat 50% 0%;"
The image url was wrong.
Forum: Themes and Templates
In reply to: Replacing Theme HeaderWhat I see is that the css file has this url for the header background image: https://dailyniches.net/wp-content/themes/company-website-001/header.jpg
Why dont you check if your image is in the correct place. If you pasted the image into the folder image inside your theme folder, change the css file and put the url rightly. Or paste the image into the theme folder, one level up from where is now.
Forum: Themes and Templates
In reply to: How to post a static photo on the home/blog page?you should do it by a css file, a link to your site would help.
Forum: Themes and Templates
In reply to: I want to remove the Logo and Tagline part of the themeI dont know what theme are you using into your site, but not every one has that option. Maybe you can remove the lines that shows the title into de header.php file in the /wp-content/theme/yourthemefolder/
Forum: Themes and Templates
In reply to: How to post a static photo on the home/blog page?in the index.php file into the /wp-content/themes/yourthemefolder/
Forum: Themes and Templates
In reply to: Using a <div id with } else {You forgot to close the php tag before <div id=singleleftcolumn”> so it’s not recognized as html. Try this:
<?php get_header(); ?> <div id="bigcolumn"> <?php $post = $wp_query->post; if ( in_category('45') ) { include (TEMPLATEPATH . '/widgets/single2.html'); } else { ?> <div id="singleleftcolumn"><?php $sec = 1; include TEMPLATEPATH. '/widgets/leftmenu.html'; ?></div> <div id="singlerightcolumn"><?php $sec = 2; include TEMPLATEPATH. '/widgets/single.html'; ?></div> <?php } ?> <div class="clear"></div> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>
Forum: Themes and Templates
In reply to: Multiple themes under the same wordpress installationMaybe you can use one of this plugins:
Theme-switcher
Theme Switcher ReloadedOr try installing WordPress MU
Try this:
Change your file: /wp-content/themes/rockwell/style.cssLook for #bottomLinks li and cut the background property. It should look like:
#bottomLinks li{ display: inline; float: left; padding-left: 7px; padding-right: 8px; }
And then go to #bottomLinks li a and paste the background property. It shoul look like:
#topLinks li a, #bottomLinks li a{ background: url(images/bullet_bottom.jpg) no-repeat 0px 50%; color: #868686; font-size: 11px; padding-left: 5px; text-decoration: none; text-transform: capitalize; }
Anyway you shouldnt change the <?php wp_list_pages(‘title_li=’) ?>
because it shows links to every page you have in your site. Now every time you create a new page, you will have to update your footer.php file.Tell me if it worked!
Forum: Themes and Templates
In reply to: adding Facebook and Twitter buttons to blog siteJust like any other link. If you want you can put an image.
<a href="https://www.twitter.com/yourprofilename">Follow me on Twitter</a>
and the same with Facebook.
Forum: Themes and Templates
In reply to: Content within footer background imageMaybe you should try to create a background image to the content div, with the height you want fixed, and repeat-x not repeat-y.
That way if the content part overlap into the footer the background-image doesn’t.Sorry about my english!
You should try this:
#footer {
background:transparent url(images/thuxfooter.gif) no-repeat scroll center bottom;
border:medium none;
}And the background image into the <div class=”page”> is the problem. Because the page wraps also the header and footer, so these has the thuxbgwide.gif as background, that’s what you see over the header (and footer) border image.
Try this:
1. Quit the background property from “page” class.
2. Create a new div wraping from the end of header to the begining of the footer div.
3. Assign a class to that div (“main-content” for example)
4. Create that class into de css file:
.main-content{
background-attachment:scroll;
background-color:transparent;
background-image:url(https://www.ilove.thuxtable.com/wp-content/themes/default/images/thuxbgwide.gif);
background-position:center top;
background-repeat:repeat-y;
width:760px;
}That should work. I tried it with Firebug and it works. You’ll have to assign padding:0 and margin:0 to h2 elements after this.
Try it and tell me! =)
(sorry about my english!)