WP Libra
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Unwanted element on front page and home button weirdYou are adding this line
display: none;
Forum: Fixing WordPress
In reply to: Unwanted element on front page and home button weirdAppearance -> Editor and select style.css
Find
.slide .slide-content.entry { bottom: 40px; font-size: 13px; left: 0; padding: 10px 20px; position: absolute; width: 300px; }replace with
.slide .slide-content.entry { bottom: 40px; display: none; font-size: 13px; left: 0; padding: 10px 20px; position: absolute; width: 300px; }Forum: Fixing WordPress
In reply to: How to create manual urlMake a template called scores and attach the scores page using the scores template.
Kind of confused on what you are trying to do.
Forum: Themes and Templates
In reply to: Help with headerCopy all the HTML on main site that you want and paste in header.php in your template. That’s how you would do it.
It’s a bit more complicated than I made it sound so you need a good understanding of HTML in order to do this.
Forum: Fixing WordPress
In reply to: How to NOT display folder contentsAdd a blank file in /web called index.html
Forum: Fixing WordPress
In reply to: Content GoneI would be curious to see your site with the Twenty Ten them activated if you can drop a link.
Forum: Fixing WordPress
In reply to: Adding a picture/link widget in my blogFirst upload your image in Media Library. Copy that URL for it.
Go to Widgets
Select Text and drag it over where you want to go.Now put in the html like…
<a href="http://www.training.sales-getters.com"><img src="what you copied" /></a>Forum: Fixing WordPress
In reply to: How to create manual urlNot sure what you are trying to do. But..
If you want to have the URL for a page do this…
Settings -> Permalinks
Choose Custom Structure and enter
/%postname%/
What this does is takes the Title and makes the URL match.
So now make a Page or Post called “Scores” and there ya go. Done
Forum: Fixing WordPress
In reply to: Error uploading imagesForum: Themes and Templates
In reply to: post page remove socialIt looks to be part of your theme so I would check to see if you can disable it in your theme options.
If not got to Appearance -> Editor and select style.css
Find
#sharing { border-top: 2px solid #EFEFEF; padding: 20px 0; }Change to
#sharing { border-top: 2px solid #EFEFEF; display: none; padding: 20px 0; }Forum: Themes and Templates
In reply to: Non-blog website themeThis forum really doesn’t support premium themes. If you have questions about how to edit that theme I would go through their support.
Forum: Fixing WordPress
In reply to: My WordPress site reset itselfHosting company had to load a backup due to whatever? That’s my only guess.
Forum: Themes and Templates
In reply to: Images linking to image file rather than post in category pageNot sure but that’s a premium theme so might want to get support through them.
Forum: Fixing WordPress
In reply to: Error uploading imagesFirst thing I’d try is to repair the files under updates.
If that dont work then disable all plugins.
Test it
If it works turn the plugins on 1 by 1 until it doesnt anymore and then you know what plugin is causing the issue.
Forum: Fixing WordPress
In reply to: Error connecting to database – After six months online!If you open wp-config.php and it is the correct DB parameters and you are using then there is something wrong with the DB.
Either way you are going to have to figure out what your DB settings were and match your wp-config.php
You might need to contact your host if you dont know how to view databases.