Forum Replies Created
-
AuthorPosts
-
Can we have a link to the actual site please.
That way we can take a look at the CSS and adjust it on the fly.Agree with Colson
The border is generated by this CSSiframe, .entry-content img {
background-color: #fff;
border: 4px solid #ddd !important;
box-sizing: border-box;
padding: 1px;
}Remove the border and it looks fine.
Hi
Have you taken a look at this post by Brian Gardner?Good man – looks good to me.
The CSS is reflecting the image behind the h4 tag
bottom-1 h4 {
color: #222222;
font-size: 14px;
font-family: Arial, Tahoma, Verdana;
font-weight: bold;
margin: 0 0 0 0 !important;
padding: 5px 10px !important;
border-bottom: 1px solid #d9d9d9;
background: url(images/nav.png);
border-top-right-radius: 8px;
-moz-border-top-right-radius: 8px;
-webkit-border-top-right-radius: 8px;
border-top-left-radius: 8px;
-moz-border-top-left-radius: 8px;
-webkit-border-top-left-radius: 8px;
}Shall we say that this one is resolved?
Let me know how it goes Martin.
Hi Martin
Do you have a copy of your original stylesheet?Styling for widget areas on home page is currently…
#home .widget {
margin: 0 0 10px 0;
padding: 10px !important;
}Look on the original stylesheet and see what the styling for #home .widget was.
If you don’t have a copy of the original stylesheet download the theme to your desktop and take a look at the stylesheet.
Hi
Colour of your h2 is defined by…element.style {
color: #00679e;
}When you say “page title” do you mean “What is In-Home Care?” because that is an h1 tag.
The h1 tag (and the other tags shown below) is styled with this CSS…
#content h1, #content h2, #content h3, #content h4, #content h5, #content h6 {
color: #444444;
font-family: Arial, Tahoma, Verdana;
font-weight: normal;
text-decoration: none;
margin: 0 0 5px 0;
padding: 0;
}Change the colour to what you want and create a selector for the h1 tag (include any other tags you want to use that colour.
Hi Sanjeev
Great job you’ve done on your site – many congratulations.My comments:
1 – I’m not a lover of rotating adds, but that’s just me.
2 – For a technology site like this a premium image would really lift the site, again that’s just my opinion.
It would have to be the right image, but it would turn a good looking site into a great looking site.3 – And as Carrie said… welcome to Genesis.
My pleasure Jimmy
Looks good now.
Shall we say this one resolved then?
Keith
Hi
Have you checked the CSS with firebug or Chrome dev tools?I’ve taken a quick look and found this CSS
input, select, textarea {
background-color: #fff;
border: 1px solid #ddd;
border-radius: 3px;
box-shadow: 0 0 5px #ddd inset;
padding: 16px;
padding: 1rem;
width: 100%;
}Remove width: 100%; and the submit button becomes smaller.
Link to your site please Dave.
May 5, 2013 at 3:31 am in reply to: Can the circles be changed to squares in the Minimum theme? #39341My pleasure Suzanne
This one resolved then.
May 5, 2013 at 3:22 am in reply to: Can the circles be changed to squares in the Minimum theme? #39338No I haven’t.
Head over to twitter and ask the gensis community about sites displaying author’s work.Ask under #genesiswp
The community will know what’s available.
You might find this article useful.
May 5, 2013 at 3:13 am in reply to: Can the circles be changed to squares in the Minimum theme? #39335Suzan
Everything is possible with Genesis depending on your coding knowledge.To show that it is possibe, this is my Minimum 2 site
Minimum 2 default homepage is a blog style homepage.
I customised my homepage to get the two rows that I wanted.I have two rows of 3, you would require two rows of 4.
May 5, 2013 at 2:58 am in reply to: Can the circles be changed to squares in the Minimum theme? #39327Hi Suzan
On the Studiopress Minimum 2 demo site this is the CSS for the social media icons:#home-featured a.icon-facebook, #home-featured a.icon-facebook:hover, #home-featured a.icon-google, #home-featured a.icon-google:hover, #home-featured a.icon-pinterest, #home-featured a.icon-pinterest:hover, #home-featured a.icon-twitter, #home-featured a.icon-twitter:hover {
-moz-border-radius: 50%;
-webkit-border-radius: 50px;
background: #ddd url(images/icons.png);
border-radius: 50%;
display: block;
height: 140px;
margin: 0 auto 30px;
padding: 0;
text-indent: -9999px;
width: 140px;
}The part that forms the circle is…
border-radius: 50%;Play around with the percentage value to get the effect you want.
-
AuthorPosts