sannie7
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Adelle] Responsive Layout not working on mobileThanks so much! I will give this a try!
Forum: Themes and Templates
In reply to: [Adelle] Responsive Layout not working on mobileI actually figured the ‘responsive’ part out… but I am still trying to get the header image to show up on the mobile screen and I would like to add a ‘view full site’ to the bottom.
Forum: Fixing WordPress
In reply to: weird post formatting after restoreI think I figured it out. Seemed to be a problem with the index.php file.
Forum: Fixing WordPress
In reply to: weird post formatting after restoresorry for the double post.
Forum: Fixing WordPress
In reply to: weird post formatting after restoreUpdate: I did some more poking around and realized that the “underlined” part is only visible for my visitors (if I am not logged into the admin section, I can see it – when I am logged in, it looks fine).
Also, it’s not the tweaking on the CSS file (checked by uploading the original CSS file of the theme that I am using).
Any ideas where the root of this problem lies?
Forum: Fixing WordPress
In reply to: weird post formatting after restoreUpdate: I did some more poking around and realized that the “underlined” part is only visible for my visitors (if I am not logged into the admin section, I can see it – when I am logged in, it looks fine).
Also, it’s not the tweaking on the CSS file (checked by uploading the original CSS file of the theme that I am using).
Any ideas where the root of this problem lies?
Forum: Fixing WordPress
In reply to: weird post formatting after restoreUpdate: I did some more poking around and realized that the “underlined” part is only visible for my visitors (if I am not logged into the admin section, I can see it – when I am logged in, it looks fine).
Also, it’s not the tweaking on the CSS file (checked by uploading the original CSS file of the theme that I am using).
Any ideas where the root of this problem lies?
Forum: Fixing WordPress
In reply to: weird post formatting after restoreUpdate: I did some more poking around and realized that the “underlined” part is only visible for my visitors (if I am not logged into the admin section, I can see it – when I am logged in, it looks fine).
Also, it’s not the tweaking on the CSS file (checked by uploading the original CSS file of the theme that I am using).
Any ideas where the root of this problem lies?
Forum: Fixing WordPress
In reply to: weird post formatting after restoreUpdate: I did some more poking around and realized that the “underlined” part is only visible for my visitors (if I am not logged into the admin section, I can see it – when I am logged in, it looks fine).
Also, it’s not the tweaking on the CSS file (checked by uploading the original CSS file of the theme that I am using).
Any ideas where the root of this problem lies?
Forum: Fixing WordPress
In reply to: Need very, very, basic 3 column to start design withTry this one: http://randaclay.com/themes/diy-theme/
Forum: Fixing WordPress
In reply to: Restoring posts/comments/users…If you only made a backup of your database, you should be able to easily restore it in the php admin section.
http://codex.wordpress.org/Restoring_Your_Database_From_Backup
Forum: Fixing WordPress
In reply to: Restore problemsAnyone?
Forum: Fixing WordPress
In reply to: Funny characters after server move: ÂÂthose two lines
define(‘DB_CHARSET’, ‘utf8’);
define(‘DB_COLLATE’, ”);were not present in my wp-config.php.
therefore, the  are still there.what do i do?
Forum: Fixing WordPress
In reply to: Help! How the heck can I install widgets?it might be that the plugin that you downloaded is not compatible with the WP version that you’re using. make sure that the plugin works for your specific version of WP.
Forum: Fixing WordPress
In reply to: Header image slightly off centerno, not the header.php file.
here’s what i do:upload your header image on your ftp site into the folder
/httpdocs/wp-content/themes/THEME/images
where ‘THEME’ is the directory of whatever theme you’re using [e.g. kubrick].
you should also see the default header image in this folderthen, go to your dashboard and then Presentation > theme editor > style.css
find the section that defines the header. mine looks like this:
#head{
background-color: #ffffff;
background-image: url(images/IMAGE.jpg);
background-repeat: no repeat;
height: 180px;
width: 900px;
padding: 0px;
margin: 10px 10px 10px 0px;as you can see the background image points to your images folder. just replace IMAGE with the name of your header image, then save the changes.
that should do it.
make sure that your header has the same pixel size as the default header to avoid “misalignment”.