Michael Smith
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Academica] Need a fixed floating header help?What is the link to your website?
Forum: Themes and Templates
In reply to: [Lupercalia] Pages in messYour missing a CSS file, or the other pages are not linking to a CSS file. What modifications have you done, if any? And what template are you using?
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Drop Down Menu Block SpacingThis is the CSS that controls the padding in the sub-menu. Is that what your looking for?
.primary-navigation ul ul a { padding: 53px 12px; white-space: normal; width: 176px; }If you put this in at the end of your style.css file you can update the padding and width of a submenu. Firebug says the original code is on line 3401 of style.css.
Forum: Themes and Templates
In reply to: [Travel Lite] how do i de activate the comment sectionDo you mean you unchecked the “Allow people to post comments on new articles ” box under Settings > Reading in the WordPress options?
Forum: Themes and Templates
In reply to: images disappearThe only post i see is the about post and the only image i see is the black artist migration box. Is that what your referring to?
Forum: Themes and Templates
In reply to: [Hemingway] header jpeg issueHa, no worries.
the black box is gone because the CSS in place tells the box to be invisible. Its still there its just 100% transparent.
I’ll keep that in mind. I’m a graphic designer by trade and have been editing photos for a living since 2007, but if run into a problem ill be sure to get in touch.
Best of luck.
Forum: Themes and Templates
In reply to: [Hemingway] header jpeg issueYes, my version of the site has text in the fields but i used the “visibility: hidden;” attribute to make it invisible. Now if you can just get your CSS to take your problem will be solved.
Copy the code below again. Put it in again and be sure to save it again. Hey update file twice, cant hurt. Yes its redundant but I just don’t have any idea why the CSS is not getting output.
.blog-info {
background: none repeat scroll 0 0 #1D1D1D;
display: inline-block;
padding: 30px;
visibility: hidden;
}
.section {
padding: 12% 0;
position: relative;
}Forum: Themes and Templates
In reply to: [Hemingway] header jpeg issueOk.
If you look at .png in the attached link you will see you are missing the div that the CSS is modifying. I’m going to guess you don’t have anything in the “site title” or “tagline” fields in the theme customization. Put something there, it doesn’t matter what. I suggest the name of your site.
I tested this on my side and do to, what is in my opinion, a poor decision from the programmer when you leave those fields blank the theme does not generate the blog-info div so the CSS on your side doesn’t have any object to modify.
Plug something in, give it a shot and let me know. If i’m wrong than I owe the developer an apology. If im right your fixed.
Make sure the CSS code I gave you in in the correct place please.
https://www.dropbox.com/s/uytm0k98vyefdah/Sandbox%20-%20KenTannenbaum%20body%20comparison.png
Forum: Themes and Templates
In reply to: [Hemingway] header jpeg issueKen when i download your CSS i see the following at the bottom of the file
}
.blog-info {
}
.section {
}When i do the same from my site I see
}
.blog-info {
background: none repeat scroll 0 0 #1D1D1D;
display: inline-block;
padding: 30px;
visibility: hidden;
}
.section {
padding: 12% 0;
position: relative;
}Try disabling all of your plugins. I’m bet there is a conflict there.
Forum: Themes and Templates
In reply to: [Hemingway] header jpeg issueOh and be sure you are refreshing your browser. if you are making changes to CSS and not seeing the results that is often a problem.
look here for more info. http://www.refreshyourcache.com/en/home/
Forum: Themes and Templates
In reply to: [Hemingway] header jpeg issueThe menu bar doesn’t have an impact on the sandbox site so it shouldn’t have an impact on your site either.
Take the code out of the header and put it in the style.css
Make sure you put it after the final closing bracket. “}” if you put it inside the closing bracket it wont work.
Forum: Themes and Templates
In reply to: [Hemingway] header jpeg issueOk, I’m hoping this will solve your issues.
First visit http://sandbox.michaelsmithportfolio.com/ and see if what I have done is what you are looking to do.
Second – If so then delete the code I gave you before and insert the following at the bottom of style.css
If your site does not look the same after you follow these steps then I suggest deleting your Hemingway theme and reinstalling it. ( you may loose any customization you have in place now so think about the reinstall carefully)
Let me know.
.blog-info {
background: none repeat scroll 0 0 #1D1D1D;
display: inline-block;
padding: 30px;
visibility: hidden;
}.section {
padding: 12% 0;
position: relative;
}Forum: Themes and Templates
In reply to: [Hemingway] header jpeg issueHmm… Can you email me the actual header image your using?
[email address moderated – these forums do not provide support via email]Forum: Themes and Templates
In reply to: [Hemingway] header jpeg issueI would just put it at the bottom of the style.css sheet. It should over write the duplicate copy above and that why you know where to find it.
The photo I’m using is not cropped the same way as the photo you have. (probably an effect of the way a ripped it out of your site)And I just saw your site header change on refresh. Is this fixed?
Forum: Fixing WordPress
In reply to: How to remove the window frame of an image?If you are talking about the carmen_large image than the image itself has as black edge due to a drop shadow. You will need to photoshop that out to remove it. In addition there is a feint border, but adding the following code to you custom css file will get rid of it.
img[class*=”align”], img[class*=”wp-image-“], #content .gallery .gallery-icon img {
border: none;
}