WebStyley
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Making my pages into postsNice, I did not know this. Thanks esmi!!
Forum: Fixing WordPress
In reply to: Making my pages into postsYou can only have one posts page
Forum: Fixing WordPress
In reply to: Add widget to sidebaradd a text widget and paste the code into the text widget. Widgets are located under Appearance–> widgets
Forum: Themes and Templates
In reply to: sidebar changehave you tried adding different widgets?
Forum: Themes and Templates
In reply to: Remobe bullet on Suffusion themeYou could also just change the text
-
url(“images/icons/bulletgr.png”)
to
-
none
this way if you ever wanted to put the bullets back in you could just re-enter the same code.
Forum: Fixing WordPress
In reply to: How to detect iPhone users?The WP Touch Plugin basically converts your wordpress site into an iPhone App.
Create a 45 X 45 .png image and save it as apple-touch-icon.png and upload it to your root. Now your site is essentially an iPhone App!
Forum: Fixing WordPress
In reply to: No embeded coding is working…Hmm.. Could you post both snippets of code and I will try it out. Thanks.
Forum: Plugins
In reply to: Add/Remove/Replace words in titles and contentI am sorry I can not help you with this I do not know of any such plugin or how to accomplish this through a hack. Best of luck.
Forum: Fixing WordPress
In reply to: No embeded coding is working…Try this plugin Google Maps for WordPress for google maps.
Also, make sure you are placing the code in the html editor and not the visual editor.
Forum: Fixing WordPress
In reply to: Page title and google recognised titleDownload Platinum SEO Plugin and you will be able to change your title tags quite simply.
Forum: Fixing WordPress
In reply to: pdf postsUpload them via FTP to the root and use the visual editor to embed media. Once you do this put in the link. Check out his tutorial Embed PDF in WordPress.
Forum: Plugins
In reply to: Add/Remove/Replace words in titles and contentClarify what you need/want to do.
Forum: Plugins
In reply to: How to add a Line of text at the bottom of page: “Powered by”check out Platinum SEO Plugin. I know that plugin gives the option of giving credit to the developer on the front page. It says SEO by Developer.
Forum: Everything else WordPress
In reply to: How to add a Facebook Fan-button<a title="Visit Us On Facebook" href="url of facebook fan page here" target="_blank"> <img style="border: 0pt none;" src="url of facebook image/icon here" border="0" alt="Visit WebStyley on Facebook" width="60" height="60" /></a>
I have been wanting to update this post with the actual code. When I first answered I didn’t put it in correctly.
so here you go everyone
an example can still be found at https://www.webstyley.com
Forum: Plugins
In reply to: Getting rid of the auto-titleThis is the code for your Title and Slogan.
<div class="headerMain<?php print $tmp; ?>"> <h1><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a></h1> <span><?php bloginfo('description'); ?></span>
To make it easy try this instead
<div class="headerMain">
If that doesn’t work try this.
<div class="headerMain<?php print $tmp; ?>"> <h1></h1> <span></span>
let me know if it works