Support » Theme: Amadeus » Minor fixes on home page

  • My blog is packslight.com

    I want to make a few minor changes
    – Change font of site title “She who packs light…”
    – Change font size of blog post titles on main page.
    – Remove “Category: _____” from the top of category pages.
    – Remove administrator (“gogabby”) and Category from posts on every page, and add number of comments…

    Please advise if you can help with any of these fixes with Amadeus theme.

Viewing 12 replies - 1 through 12 (of 12 total)
  • Love the site!

    Do you have a child theme in place?

    Thread Starter gogabby

    (@gogabby)

    Thank you! And yes I do, I have the premium version.

    Are you familiar with CSS at all?

    Thread Starter gogabby

    (@gogabby)

    Yes but very minimal. I’ve tried copying and pasting code like this

    .logo a { font-size: 220px !important; }

    to change these things, but it hasn’t worked with this particular theme. Amadeus doesn’t seem to have a Custom CSS place.

    Looking for someone experienced with this theme to give me a few simple lines of code, thanks.

    Some themes are a pain but give this a try:

    `h2 .site-description {font-size:220px;}

    Thread Starter gogabby

    (@gogabby)

    That didn’t work :/

    I’m also now trying to figure out how to hide the tags on my posts.

    Hi gogabby

    The CSS for changing font of site title:

    .site-description {
        font-family: Palanquin !important;
    }

    The CSS for changing font size of blog post titles:

    .entry-title a {
        font-size: 30px !important;
    
    }

    The CSS for removing Category: _____ and administrator (“gogabby”) :

    header.page-header {
        display: none;
    }

    If the above CSS doesnot work please report.

    Note: Please customize files of child theme, so your changes will not overwrite on theme update.

    Thanks!!!

    Thread Starter gogabby

    (@gogabby)

    Thank you WEN Solutions. But I have 30 child theme php files. To which do I put which code in? Thank you

    Hi gogabby

    If you have already created child theme then you need to put those code in style.css file.

    Thanks!!!

    Hi!
    Go to you theme directory and paste this code in style.css.

    .site-description {
    font-family: Palanquin !important;
    font-weight: 600;
    text-decoration: none !important;
    }

    .entry-title a {
    font-size: 28px !important;
    line-height: 1 !important;
    }
    .category .page-header {
    display: none !important;
    }

    Also there is google analytics added in the bottom of style.css file. its not the right place. you should place it between <head> </head> tags.

    find header.php file in your theme directory. open it and find for this tag
    </head> .. then place the script right above it.

    Thanks
    AB

    Thread Starter gogabby

    (@gogabby)

    Thank you Wen Solutions. Unfortunately I tried implementing and saving each of your pieces of code indivdually and none of it seemed to have an effect on my website.

    Same with your code amaisbajwa, I implemented and saved them one by one and checked for changes and they didn’t seem to work. However I did move my google analytics code to the header as you suggested; thank you.

    This is very frustrating 🙁 None of the code effects my blog after I change it and save it. Maybe it takes a while to take effect? Thank you both for your help. I’ll try them all again in the morning.

    it should work .. i see your style.css file but couldn’t find my piece of code ..
    again, Go to your theme directory .. find style.css file .. and paste the code at very end of the file ..
    here’s url
    http://www.packslight.com/wp-content/themes/amadeus/style.css

    if still not working .. then go to header.php ..
    find </head>
    and write these tags just about it .. and paste code between these tags.

    <style>

    </style>

    {not a standard solution but it will work 😛 }

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Minor fixes on home page’ is closed to new replies.