Michael Smith
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hemingway] header jpeg issueI decided to try to fix this by duplicating the problem you have then working out a solution.
I started to play with this again and it looks like the logo div has been removed from the theme somehow. The Logo and the Theme work together to set the height of the header. Did you modify the header.php file? Or Apply custom CSS to remove the .blog-logo img?
As soon as i removed the logo from the version I was working on i was able to duplicate the problem you have. Now, I don’t know if your removed the logo via CSS or modified header.php, but If you return the header to default and put the following code at the bottom of style.css your header should look like the one at http://sandbox.michaelsmithportfolio.com/.blog-logo img {
height: auto;
max-height: 250px;
max-width: 100%;
visibility: hidden;
width: auto;
}One work of caution about updated the style.php file. As soon as you update the Hemingway theme that file will most likely be overwritten. Save yourself problems you should look at developing a child theme (much easier than it sounds) to protect your customizations.
Forum: Themes and Templates
In reply to: [Hemingway] header jpeg issueI totaly understand. Best of luck
Forum: Themes and Templates
In reply to: [Hemingway] header jpeg issueDon’t worry about it. Web design tends to be a moving target.
If you need more help, or are interested in contracting someone else to do the work feel free to reach out.
Add the following line of code to the code you already have in place to get a background color similar to your image.
background-color: #D7CEBD;
The final result will look like this:
#parallax-bg {
background-color: #D7CEBD;
background-repeat: no-repeat;
}Forum: Themes and Templates
In reply to: [Hemingway] header jpeg issueYour right. Background image has nothing to do with it.
I downloaded your image from your site. And discovered that the image is not 1280 x 416 at 72ppi. Its 307 x 100 at 300ppi.
After I resized the image to the correct size, installed Hemingway in my sandbox, and uploaded the new image to the site. (Appearance > header > select image.) it seems to work for me. See the first link below
http://sandbox.michaelsmithportfolio.com/
Here is a link to the image I fixed. I hope this helps. Download it and give the new image a shot. Ill leave the image available for a couple of days.
https://www.dropbox.com/s/jvvh276c4z94e09/cropped-WEB-BANNER.jpg
Forum: Themes and Templates
In reply to: [Hemingway] header jpeg issueThe horse image is loaded as a background image, not a primary image. As long as it’s loaded as a background image it will get cropped.
You need to change the size of the header or upload the image as the primary content. Is there anywhere else to upload a header image in the theme settings?Forum: Themes and Templates
In reply to: Change Menu Bar ColorYou will need to use an FTP client or you can try using
https://wordpress.org/plugins/one-click-child-theme/I’ve always done it manually so im not sure how well the plugin will work
Forum: Fixing WordPress
In reply to: How to remove the window frame of an image?They are attribute selectors. Take a look at this for more information.
http://css-tricks.com/attribute-selectors/Forum: Fixing WordPress
In reply to: How to remove the window frame of an image?Here you go:
img[class*=”align”], img[class*=”wp-image-“], #content .gallery .gallery-icon img {
border: none;
}Plug the above code into the custom css of your child theme. That should solve your problem.
Let me know if it give you any trouble.
Forum: Fixing WordPress
In reply to: How to remove the window frame of an image?You can add edit the CSS to remove the border around the image.
you can try
img {
border: 0 none;
}but i would need a link to the site to be sure
Forum: Everything else WordPress
In reply to: Securing wordpress admin pageiThemes Security is the plugin i use. (previously Better WP Security)
The one click default settings will protect you from a brute force attack
Forum: Themes and Templates
In reply to: [Lupercalia] how to add slider under menuThat will depend on the slider. I’ve used Meteor Slides (free) before and you can add this slider via shortcode or Php.
http://wordpress.org/plugins/meteor-slides/Forum: Themes and Templates
In reply to: Customize Theme White Blank PageSorry i missed the bit about having the same problem with all of your themes.
I’m going to assume you’re not self hosting so…
If you installed this manually I would double check your steps here, and make sure you have the latest version of wordpress. https://codex.wordpress.org/Installing_WordPress
If you installed via your Host’s CPannel then I would call them. This has to be a problem with their install process and they will be able to fix it.
Forum: Themes and Templates
In reply to: Customize Theme White Blank PageIf you just started I would simply try to re-install wordpress.
You could also activate a different theme and see if you have the same problemForum: Themes and Templates
In reply to: [Attitude] Homepage slider on all pages (except blog page)If you added the slider to a hook just blow the navigaiton bar then used something to the effect of:
.page-id-xxxx .featured-slider { display:none; }
Page id is the page of the blog, and .featured-slider is the class of the slider div.