Forum Replies Created

Viewing 15 replies - 76 through 90 (of 128 total)
  • It should actually scroll down the the freshly loaded content for them; if a visitor clicks on any of your nav links, it should take them down with the top of the category box now being aligned with the top. (Maybe I’m misunderstanding)

    You could make some changes to the slider that would give you some more space and should make the category section visible without scrolling (and get rid of the unused/wasted space in the slider caption area).

    .fp-slides, .fp-thumbnail, .fp-slides-items {
        height: 370px;
    }

    Or, if you still just wanted to move everything up, the id is ‘all’, so you could use:

    #all {
        margin-top: -15px;
    }

    I believe #content is the id you’re looking for, you’ll want to use rgba if you want to keep the alpha (transparency)

    #content {
        background: rgba(169,0,0,.5);
    }

    Firebug will be a great tool for you to find all this things and play around with them 🙂

    The class for the category/page title is “.page-title”, you could do with it as you wish, I found this seemed to look nice:

    .page-title {
        background: none repeat scroll 0 0 #F8F7F6;
        color: #EE8B25;
        margin: 0;
        padding: 1em;
    }

    To change the area with the date, you could use:

    .articles .post-caption p {
        background: #000;
        color: #fff !important;
        padding-left: .5em;
        padding-right: .5em;
    }
    .articles .post-date {
        color: #fff !important;
    }
    .articles .post-caption a {
        color: #fff !important;
    }

    That should do the trick!

    You could use a custom CSS plugin (there are lots of options there!) or child theme (http://codex.ww.wp.xz.cn/Child_Themes) to edit the stylesheet.

    Then it’s just a matter of finding the id or class (ids have a “#” and classes have “.”) of the text you’re trying to change. Like, if you were wanting to change the colour of the menu links, you would use the following:

    .main-navigation a {
         color: #282888;
    }

    Hope that helps!

    Ahh, sorry! I misunderstood, I thought from looking at the site that you didn’t want the text title there. My bad!

    The theme actually replaces the text version of the site title when a header image is uploaded.

    To get a header image to the right like in their screenshot, you just have to upload your image into the Header Sidebar (in the Widget area) and remove the image you had uploaded as a header. You could then change the #sidebar-header css to get the height you want for your image.

    Hey,

    The nav border can be changed to:

    .main-nav {
        border-bottom: 3px solid green;
    }

    Page title:

    .page-title {
        background: green;
    }

    Lines used to seperate content:

    .widget-title, .footer-widget-title {
        border-bottom: 3px solid green;
    }

    You can substitute “green” for a colour code of your choice, of course. You’d just have to make the changes using the custom css box 🙂

    It sure is!

    Explanation: If you remove the float from #branding (it’s the container for the header image and the title/tagline, then change the width from 45% to 100% (this is what will let you spread it out) then float #site-title to the right and #site-description to the left

    Answer:

    #header {
        width: 100%;
    }
    #site-title {
        float: right;
    }
    #site-description {
        float: left;
    }

    That should do the trick!

    Hey Joan,

    To center your logo and content, you’ll have to make some changes to your css (either via a child theme or custom css plugin)

    #logo {
        float: none;
        text-align: center;
    }
    #secondarymenu, #secondarymenu li {
        float: none;
    }
    #secondarymenu li {
        display: inline-block;
    }

    By the time I refreshed your page it looks like you changed things around a bit haha you may find the code above a bit easier to use 🙂

    Best of luck!

    This has been a tad frustrating! I still can’t get it to do it that way I’d like, but I have found a workaround for you:

    For some reason, the custom css option that’s with the theme won’t recognize the import to make PT Sans available; so this leaves two different options (as far as I’ve been able to find)

    1. You can use a custom css plugin to use the @import

    or

    2. You could use a child theme to make your changes that way

    I prefer to use child themes, but for the sake of testing I just used a custom css plugin and the following:

    @import url(http://fonts.googleapis.com/css?family=PT+Sans);
    
    h1 {
        font-family: 'PT Sans', sans-serif !important;
    }

    Hope that helps!

    Do you mean the grey shadow box behind the caption?

    You can add this to your custom css area:

    .carousel-caption {
        background: none;
    }

    Neat name!

    To make a nav bar like the one in the example you would just have to create the image that you want to use (in that case it was the banner) and set it as the background using css (using either a child theme or a custom css plugin)

    #access {
        background: url('../images/menubg.png') no-repeat;
    }
    article {
        border: 2px solid pink;
        box-shadow: 2px 2px 2px purple;
    }

    What you would need would be similar to the example above; if you didn’t want to use an image for your menu background, you could just use border and box-shadow for it as well. (The box-shadow syntax is “box-shadow: horizontal-shadow vertical-shadow blur spread color inset;”

    Hope that helps, or at least gets you going in the right direction!

    Hey falkbusse,

    .sf-menu {
        float: right;
    }

    ^will do the trick, but it will also float the lower menu to the right. If you’d like to only float the top menu to the right, try:

    #top-navigation .sf-menu {
        float: right;
    }

    (If you were using Chrome’s tools/Firefox tools to inspect the css, it sometimes helps just to dig a bit deeper if the first attempt doesn’t change anything)

    Hope that helps!

    Hey bcohn21,

    I installed the theme to check it out, are you getting rid of the ‘#’ before entering the URL? It was there by default and it just has to be removed for your links to work properly.

    Let me know if that helps!

    Sure is!

    Just change the max-width to 100% 🙂

    #branding #mainnav {
         max-width: 100%;
    }

    Glad I could help!

    It is possible!

    You can float it to the left rather than the right.

    If you use a child theme, custom css plugin, you can add:

    #branding #mainnav {
        float: left;
    }

Viewing 15 replies - 76 through 90 (of 128 total)