Robin
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How do I do get this effect?r u using dreamweaver ?
if yes
click on wp-content folder (ctrl+f) and add body.custom-backgroundi did a firebug and it shows that plugin and i think this class is from that plugins css
Forum: Themes and Templates
In reply to: How to remove entry_content excerpt on this themeentry_content thing r as such short description under your title (so you just want to display your titles? )
the above code takes care of it as such
Forum: Themes and Templates
In reply to: How to remove entry_content excerpt on this themego to your css file
.entry_content
{
display:none;
}Forum: Themes and Templates
In reply to: How do I do get this effect?there is that plugin ft-media-image-widget in your plugin folders
and if u can do a site wide search for this class
body.custom-backgroundyou should be able to see the background-color
Forum: Themes and Templates
In reply to: Comment box does not show up on main page; only post pagehi your site link is missing can you add that ?
Forum: Themes and Templates
In reply to: How do I do get this effect?r u using ft-media-image (plugin)
Forum: Themes and Templates
In reply to: How do I do get this effect?body.custom-background {
background-color: #FFFFFF;
}line 71
remove itForum: Themes and Templates
In reply to: Header / Border Issueit looks like your secondary navigation
so if you go to appearance > menu you should be able to fix itsecond option it could be a widget so check your widget section as well
it should be functions
i havnt worked to extensively with widgets otherwise would have given you a quick solutions
might look over the weekend thoughyup you can do that there is a trick to it
add a blank text widget 😉 should work if their is blank text widget it wont show up as such
make sense ?Forum: Fixing WordPress
In reply to: Local to Liveyea the widgets would have broken if they already existed because while you did db search and replace you wouldnt have used the proper script to do it
Forum: Fixing WordPress
In reply to: Static root pages won't workcould you pastbin.com your htacess and index file so we can try see if you missed out something
Forum: Installing WordPress
In reply to: Transitioning to a new hostmay be caching
but good to know it worked out for uForum: Fixing WordPress
In reply to: Local to Liveyes wordpress importer
you would have to create a new db and copy the sql dump of your local on it.
and edit your wp-config.php to point to your new database settingsForum: Themes and Templates
In reply to: How do I do get this effect?did u try doing this way
add background-size:100%; as well <img src="images/bg.jpg" id="bg" alt=""> and in css #bg { position:fixed; top:0; left:0; /* Preserve aspet ratio */ min-width:100%; min-height:100%; }