• Hello,

    Thank you for the update. There are a few problems however

    1) for some reason the site title/dead link that is above the page link list is a lot smaller now. How can I increase the size of that title again?

    2) blockquotes are also smaller. Curiously, I checked in the style.css and it looks like it is still told the same font size as before but that it must be getting over-ridden somewhere else based on the inspect element information you can get in firefox.

    This is true except if you have some bullet points in the block quote, in which case it is still larger. I would like to make it so the block quote text is slightly larger than other text like it was in the previous version regardless of whether or not there is a bullet point or not. You can see an example at the following link:

    https://atavisionary.com/sjws-tirelessly-work-towards-goal-destroying-github/

    3) The page link colors are now different from links in the body. On the old version it was a purple transition (which I changed to brown). I would like to switch this color transition back to the old style using my brown colors instead of the new grey ones. How might I do that?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Here are the places that you are looking:

    1. Site title .site-title
    2. Blockquote blockquote p
    3. Header page links .sf-menu > li > a

    I post this in case anyone else is struggling. The first two set a pixel size for font then update it with an rem size, so the root unit has changed somewhere. The third is a straightforward color change. Great website! I learned a lot while looking over the page to find this stuff.

    Thread Starter Atavisionary

    (@atavisionary)

    Thank you altright, that was very helpful. Below is the changes I made to the code to get the changes I wanted. I changed either font sizes and added !important or I changed the color to the one indicated

    `changes, color

    /* Current Item Indicator */
    .sf-menu > li.current_page_item > a,
    .sf-menu > li.current-menu-item > a,
    .sf-menu > li.current_page_ancestor > a,
    .sf-menu > li.current-menu-ancestor > a,
    .sf-menu > li.current-menu-parent > a {
    color: #907C6D;
    }

    .sf-menu > li > a:hover,
    .sf-menu > li > a:focus,
    .sf-menu > li > a:active {
    color: #966533;
    }

    .sf-arrows > li > .sf-with-ul:focus:after,
    .sf-arrows > li:hover > .sf-with-ul:after,
    .sf-arrows > .sfHover > .sf-with-ul:after {
    color: #907C6D;
    }

    }
    /* Current Item Indicator */
    .sf-menu > li.current_page_item > a,
    .sf-menu > li.current-menu-item > a,
    .sf-menu > li.current_page_ancestor > a,
    .sf-menu > li.current-menu-ancestor > a,
    .sf-menu > li.current-menu-parent > a {
    color: #907C6D;
    }
    .sf-menu > li li.current_page_item > a,
    .sf-menu > li li.current-menu-item > a,
    .sf-menu > li li.current_page_ancestor > a,
    .sf-menu > li li.current-menu-ancestor > a,
    .sf-menu > li li.current-menu-parent > a {
    color: #907C6D;
    }

    changes font size

    blockquote {
    color: #555;
    border-left: 6px solid #966533;
    font-family: “Lato”, sans-serif;
    font-size: 20px;
    font-size: 1.25rem !important;
    line-height: 1.3;
    margin: 0 auto 26px;
    margin: 0 auto 1.625rem;
    padding: 15px;
    padding: 0.9375rem;
    position: relative;
    }

    blockquote p {
    font-size: 20px;
    font-size: 1.25rem !important;
    margin: 0;
    }

    blockquote blockquote {
    margin: 15px;
    margin: 0.9375rem;
    }

    blockquote cite {
    color: #cccccc;
    display: block;
    font-size: 20px !important;
    font-size: 1.25rem !important;
    font-style: normal;
    margin: 15px 0 0;
    margin: 0.9375rem 0 0;
    text-transform: uppercase;
    }

    .site-title {
    font-family: “Montserrat”, sans-serif;
    font-size: 64px;
    font-size: 3.6rem !important;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    padding: 0;
    word-wrap: break-word;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘changes in latest update’ is closed to new replies.