figaro
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: background image keeps repeatinghow much larger?
That depends…how much screen area your image covers on my computer depends on the size of your image and the resolution of my monitor. Do you think someone will be viewing your site with a screen resolution higher than 1600px wide? If so, make the image wider…or, better yet, create a good, small, tiling image and set it to repeat…that way you don’t have to be concerned about screen resolutions.
why would I need to compensate for height?
See my previous answer and think of height…..same concept…..
Forum: Fixing WordPress
In reply to: background image keeps repeatingWell, your image is 480px by 640px, so you are going to have to repeat or make it quite a bit larger. Even if you make it larger (wider) to, say, 1600px, then you will still need to do something to compensate for height…either repeat-y and/or set a background color to try and blend the image and background. But, if you don’t want it to repeat, just change your css under #main from repeat to no-repeat, or repeat-x, etc.
Forum: Fixing WordPress
In reply to: Removing a link in header phpFind the following in style.css:
#navigation { border-bottom:3px solid #15A0D3; border-top:1px solid #EEEEEE; float:left; padding-bottom:10px; padding-top:10px; text-align:center; width:100%; }
and add a display: none line like so,
#navigation { border-bottom:3px solid #15A0D3; border-top:1px solid #EEEEEE; float:left; padding-bottom:10px; padding-top:10px; text-align:center; width:100%; display:none; }
Forum: Installing WordPress
In reply to: Please help WordPress on Godaddy problemsGodaddy should have provided you with their DNS servers. You will need to login to the account where you have your domain name registered and set it to resolve to those Godaddy DNS servers. Once you do that, it could take up to 48 hours to propogate before you see your site on Godaddy.
Forum: Themes and Templates
In reply to: Problem with custom header replacement in Kubrick@sbiwald: See the following videos for step-by-step directions on editing the Kubrick theme, including adding a custom header.
[link moderated]
Forum: Fixing WordPress
In reply to: clicking on a tag returns everypost with tagYour theme is either using a tag.php file, or, if that doesn’t exist, it’s using the template.php file to display the tag results. If you have tag.php in your theme, then edit it to call the_exerpt instead of the_content. If it doesn’t have a tag.php file, then you can either create a custom template called tag.php or edit the archives.php file to call the_excerpt. Look here for more info:
Forum: Fixing WordPress
In reply to: Password protected postEdit the post, click edit by visibility, change it to “Public” and save.
Forum: Fixing WordPress
In reply to: Server ChangeSee if this helps…if you are using the same web address, then you don’t need to do the sql editing part.
[link moderated]
Forum: Fixing WordPress
In reply to: New Template Problem!I can’t tell just by looking at the code…zip the theme and give me a download link and I’ll look at it.
Forum: Everything else WordPress
In reply to: Can I modify wordpress and legally resell it to users?Yes, you can.
Forum: Installing WordPress
In reply to: Local install problems (have already searched forum)Here is a step-by-step video tutorial on installing WordPress and XAMPP.
[link moderated]
why was this link moderated? Figaro has some excellent video tutorials that really help – I’m putting it back up…samboll
https://educhalk.org/blog/?p=154Forum: Fixing WordPress
In reply to: New Template Problem!You probably have some kinds of space/returns or extraneous code in your template file. Try creating another one from your page.php file. See the following video as well…
[link moderated]
Forum: Fixing WordPress
In reply to: Remove default RSS button iNoveOr, login to your wp-admin and select Appearance/Editor and then select sidebar.php on the right. In the editor find:
<!– feeds –>
and delete everything from there to:
<!– showcase –>
and save.
Forum: Fixing WordPress
In reply to: What is the name of the detail page?You are probably talking about the single page.
Forum: Fixing WordPress
In reply to: Rename Theme Templates?Seems you should be able to do a search/replace on the db changing the old template name to the new. Of course, you would need to change the template names first. As always, backup first….