Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #15226
    Mark Carter
    Member

    Hi there!

    I have several questions which I seem to be having trouble finding answers to.

    I

    1. s there a reference page anyplace that explains what I need to do to create some of the key features such as Icon Boxes, Media Boxes, Information Boxes… etc.?
    2. In the Widgekit Slider, how do I adjust the font size?
    3. For the “Site Title & Tagline,” I’m using the option for “Logo with Title and Tagline.” The title and tagline flow below the logo no matter what I do. Is there anyway to have the logo float on the left side of the Title and Tagline? I’m looking at it in Safari on a 27″ iMac. On an iPad it looks like I want.

    Theme is Circumference, latest version of everything. Blog URL: http://mfcarter.net/blog/

    #20036
    Sushil Adhikari
    Moderator

    I still have some more tutorials to add to the theme, but for things such as icon boxes etc., the HTML Snippets folder in your original download has code and quick how to use info in each of the text files.

    For your slideshow font size, it looks like their default style adds this class to each line:
    .caption1
    .caption2
    So changing or adding a font size to these is how you can do that.

    The floating downward of your site title is due to the fact your title appears to need more space. The logo group goes into a container that sits next to the nav container. Each container has a certain width. A couple ways you can do this:

    1. use the child theme and modify the container sizes of the header.php file
    2. Adjust the font size

    The second option at best could be done with a font size being 1.5em and a line height of 1.1

    #cir-site-title {
    font-size: 1.5em;
    line-height: 1.1;
    }

    The first option might be the one you want though, but it also depends on how big (how many links) your main menu will be if you want your menu in the Primary menu location. It means installing and activating the child theme and copying over the header.php file to it, making the changes to a couple containers for the logo and nav:

    to be this

    Then the nav container to be a bit shorter:

    to be this

    ***Important: It looks like you made several colour changes with the customizer. This means that once you activate the child theme, option settings and widgets published to positions are not inherited. This is a WordPress thing because it sees it as a new theme activation. But the child theme will allow you to make custom changes to theme files and be able to get theme updates without losing your changes.

    ***Both containers for the logo group and nav must have their classes equal 12 because this theme works off a 12-column grid. So any containers side-by-side must total 12 columns.

    #20037
    Mark Carter
    Member

    HI There,

    Thanks so much for your response.

    I’ve been working with a child theme from the beginning after seeing your excellent tutorial on that.

    I’ve got almost everything covered. Except, the work with the header.php. It’s found only in the Parent Theme. It’s not in the child theme. So, if I copy it to the child and make the changes and if you do a new version. What is the likelihood that I will have to do this change again?

    Thanks!

    #20038
    Sushil Adhikari
    Moderator

    hence why child themes are great because when you update the theme (parent theme), only that gets updated so any modifications you do won’t be lost.

    #15227
    Mark Carter
    Member

    Ha! Duh! Ok, I get it. 😉

    Thanks again. You’ve been a great help.

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.