Forum Replies Created
-
AuthorPosts
-
Susan NelsonParticipant
Oh, I know that frustration well. Maybe you could send her to http://www.wp101.com/ ?
Susan NelsonParticipantHostGator was doing that to me for a while, too. Not anymore, though. I agree - I don't like that idea!
Maybe I'm thinking of a different plugin, but there was a vulnerability with one of the caching plugins. Google "w3 total cache vulnerability" to read about it. I think I heard they've resolved it, though.
January 2, 2013 at 5:50 am in reply to: Primary Sidebar Turns blank when you try to make it wider #8923Susan NelsonParticipantI'm thinking it doesn't go blank, it just falls below the content area because there's not enough room for it. If you scroll down, you'll probably see the sidebar down below.
If you want to make the sidebar wider, you'll have to make the #content area more narrow. Everything together must not exceed the total width of the #wrap (or #inner depending upon how you've got things set up). If you post a link to your site, we can help you figure it out.
Susan NelsonParticipantThe WP Super Cache plugin doesn't install with Genesis. That's something your host does. I've heard about so much trouble with that caching plugin lately...
Susan NelsonParticipantGlad I could help! 🙂
Susan NelsonParticipantCan you post a link to your site so we can take a look?
Susan NelsonParticipantSince the theme is using the @import method of implementing Google fonts, you don't need the <link href...> method, so you can just delete that line.
Now you can go through the style.css file and replace all instances of Quattrocento with Dosis.
Susan NelsonParticipantYou may need to clear your cache because I see the wrap as 1100px. As for the header, I still see the height set at 100px. Check these areas:
#header {
margin: 0 auto;
min-height: 100px;
width: 100%;
}.header-image #title-area,
.header-image #title,
.header-image #title a {
display: block;
float: left;
height: 100px;
overflow: hidden;
padding: 0;
text-indent: -9999px;
width: 284px;
}You may also need to change the header height in functions.php. Look for something like this:
/** Add support for custom header */
add_theme_support( 'genesis-custom-header', array( 'width' => 960, 'height' => 100 ) );Susan NelsonParticipantGo to Genesis > Theme Settings > and then scroll down to the Header and Footer Scripts section. You can add it there.
December 29, 2012 at 5:51 am in reply to: Agency 2 – how to remove page name from beginning of pages? #8111Susan NelsonParticipantYou can add this to style.css. I suggest adding it to the Headlines section.
h1.entry-title {
display: none;
}Susan NelsonParticipantHere's an excellent tutorial on how to add a slider to the Minimum theme.
Susan NelsonParticipantIt looks like you'll need to upload a smaller version for the smaller devices.
Susan NelsonParticipantSure, feel free to send me a private reply (checkbox before the submit button) with your login and I'll be happy to take a look.
December 27, 2012 at 5:46 pm in reply to: Different Font Sizes for Text Widgets in Header Right #7794Susan NelsonParticipantYou're welcome!
Susan NelsonParticipantCan you please post a link to your site so we can check it out?
December 27, 2012 at 12:39 am in reply to: Separate style sheet for executive theme inside pages? #7660Susan NelsonParticipantI would just use the body class to specify a different background for the other pages. So, something like this:
.about body {
background: url(images/yourphoto.png);
}You can assign custom body classes for each page under the section where you can select your page layout (2 or 3 columns). Or you can simply view the source code and find a line similar to this near the top:
<body class="page page-id-12 page-template-default logged-in header-full-width header-image full-width-content">
In this case, you would use .page-id-12. Obviously, your page id number will be different for each page.
December 27, 2012 at 12:34 am in reply to: Different Font Sizes for Text Widgets in Header Right #7658Susan NelsonParticipantSandym, you can add this to style.css:
#text-10 {
font-size: 14px;
}Or whatever size you need it to be....
You can find the id of the text widget (in this case it's #text-10) by using Firebug or by viewing the source code.
Susan NelsonParticipantYou could try decreasing the width of the header right widget area.
#header .widget-area {
float: right;
width: 690px;
padding: 15px 0 0 0;
}Maybe try something like 410px.
December 23, 2012 at 5:57 pm in reply to: Can a blog at a subdomain of main site, conflict with the main site? #7232Susan NelsonParticipantYou can just add each blogger as a new user and set them up as an editor. Then you can create a page that lists your authors with a link to their posts or do something like this: http://codex.wordpress.org/Author_Templates
Susan NelsonParticipantThere's a background color of #dddddd on #welcome. You can remove that or change its color.
Sorry - it's on .welcome and not #welcome.
-
AuthorPosts