mooapo
06-29-2012, 04:09 PM
Hi....
I have been struggling with an issue that's been a huge headache, and much teeth grinding.... Lol....
Anyways,,,, I am trying to design my first WordPress Blog. I have intermediate CSS and CSS3 Skills, so this shouldn't be a problem right? Well not so the case, yikes !
I had placed a Search Form within the Header of my Blog, looks great in Firefox, IE and Opera. But one problem, Chrome and Safari seems to reject my style of CSS....
I placed a Border around and a -Webkit-Box-Shadow within the ( Forms Input Element ), but I cant see either when checking it out in both Chrome and Safari.:eek:
header input#s {
-moz-box-shadow: inset 2px 2px 5px #202020 !important; /* Firefox */
-o-box-shadow: inset 2px 2px 5px #202020 !important; /* Opera */
-webkit-box-shadow: inset 2px 2px 5px #202020 !important; /* Safari, Chrome */
box-shadow: inset 2px 2px 5px #202020 !important; /* CSS3 */
font-size: 1.4em;
height: 28px;
padding: 0 5px 0;
width: 240px;
}
<form action="<?php bloginfo('siteurl'); ?>" id="searchform" method="get" role="search">
<div>
<label for="s" class="screen-reader-text">Search for:</label>
<input type="search" id="s" name="s" value="" />
<input type="submit" value="Search" id="searchsubmit" />
</div>
</form>
Please, can anyone save me....:confused:
I have been struggling with an issue that's been a huge headache, and much teeth grinding.... Lol....
Anyways,,,, I am trying to design my first WordPress Blog. I have intermediate CSS and CSS3 Skills, so this shouldn't be a problem right? Well not so the case, yikes !
I had placed a Search Form within the Header of my Blog, looks great in Firefox, IE and Opera. But one problem, Chrome and Safari seems to reject my style of CSS....
I placed a Border around and a -Webkit-Box-Shadow within the ( Forms Input Element ), but I cant see either when checking it out in both Chrome and Safari.:eek:
header input#s {
-moz-box-shadow: inset 2px 2px 5px #202020 !important; /* Firefox */
-o-box-shadow: inset 2px 2px 5px #202020 !important; /* Opera */
-webkit-box-shadow: inset 2px 2px 5px #202020 !important; /* Safari, Chrome */
box-shadow: inset 2px 2px 5px #202020 !important; /* CSS3 */
font-size: 1.4em;
height: 28px;
padding: 0 5px 0;
width: 240px;
}
<form action="<?php bloginfo('siteurl'); ?>" id="searchform" method="get" role="search">
<div>
<label for="s" class="screen-reader-text">Search for:</label>
<input type="search" id="s" name="s" value="" />
<input type="submit" value="Search" id="searchsubmit" />
</div>
</form>
Please, can anyone save me....:confused: