jsarvey
Forum Replies Created
-
Forum: Themes and Templates
In reply to: menu gradiant effects not showing in IE Twenty elevenI found a great website which FINALLY provides the comprehensive answer for solving the browser issue with gradients. I can’t believe how many crappy answers I had to wade through to find it. jtBear gave part of the solution above.
First, here’s the webpage with what I find to be the best answer:
http://webdesign.about.com/od/css3tutorials/ss/css3-linear-gradients.htmOn this page, they provide all of the additional codes that you might need to insert in order for the most common browsers to display your website correctly.
First, they show the code for different versions of IE:
/* IE 5.5–7 */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#999999', endColorstr='#ffffff', GradientType=1); /* IE 8–9 */ -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#999999', endColorstr='#ffffff', GradientType=1)"; /* IE 10 */ -ms-linear-gradient(left, #999999 0%, #ffffff 100%);After showing that for a number of other browsers, they then show what it would actually look like in your CSS:
background: #999999; background: -moz-linear-gradient(left, #999999 0%, #ffffff 100%); background: -webkit-gradient(linear, left top, right top, color-stop(0%,#999999), color-stop(100%,#ffffff)); background: -webkit-linear-gradient(left, #999999 0%, #ffffff 100%); background: -o-linear-gradient(left, #999999 0%, #ffffff 100%); background: -ms-linear-gradient(left, #999999 0%, #ffffff 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#999999', endColorstr='#ffffff',GradientType=1 ); -ms-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#999999', endColorstr='#ffffff',GradientType=1 ); background: linear-gradient(left, #999999 0%, #ffffff 100%);Forum: Themes and Templates
In reply to: menu gradiant effects not showing in IE Twenty elevenNever mind re my last question. I see that that code is already contained within TwentyEleven’s CSS.
Forum: Themes and Templates
In reply to: menu gradiant effects not showing in IE Twenty elevenWhere should one add the suggested code?
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#252525', endColorstr='#000000');Forum: Themes and Templates
In reply to: Twenty Eleven different header image per pageYou can upload new images under “Appearance” / “Header.”
Then select to display Uploaded images instead of default images.As for Q2: You can also always use a simple Text widget and paste in the html for the image.
Forum: Themes and Templates
In reply to: How To Hide Page Title On Static Homepage – Esplanade ThemeIt looks gone to me.
Or are you referring to the breadcrumbs: “You are here: Home” ?
Are you trying to turn off breadcrumbs on just the home page?Forum: Themes and Templates
In reply to: How To Hide Page Title On Static Homepage – Esplanade ThemeThere were several suggestions made throughout the thread.
Don’t do them all at the same time.The simplest one, and one that I found worked for me was to simply paste:
.page-id-XX .entry-title { display: none; }into style.css at the bottom. Where it says “XX” replace with the actual page-id number of your home page.
Forum: Themes and Templates
In reply to: How To Hide Page Title On Static Homepage – Esplanade ThemeI just tried adding it at the very bottom of style.css and it worked. Generally, when suggestions are made for adding a piece of code, it would be helpful it the suggestion included where within a file to add it even if that meant the bottom of the page.
Forum: Themes and Templates
In reply to: How To Hide Page Title On Static Homepage – Esplanade ThemeI have read multiple postings dealing with how to hide “Home” or the page title on the home page. I see the recommendation the recommendation for what code to add. However, I don’t know where within the style.css file to add it.
Could you clarify?