• Resolved heartcenter333

    (@heartcenter333)


    Hi I was directed here when I posted to the www.ads-software.com main forum…

    What I need is to put the overall text of my pages and posts as well as the titles to be darker… Black would be fine…

    Also the “blue” for the links, I would like to maybe change that to a purple or something…

    my website: https://www.heartcenter333.com

    Also, would like to make some changes to navigation such as making them show a little better with my background…

    Lastly I would like to bring the text box or main area down, I made the footer transparent, so I don’t need that much space at the bottom of my page… Thanks for any answers… ??

Viewing 15 replies - 1 through 15 (of 36 total)
  • I made the footer transparent …

    How did you do that, by editing the theme’s style.css file? All of the changes you want to make can be done with CSS, but you want to avoid modifying the theme’s CSS files directly because if the theme ever gets updated because of feature enhancements or security patches, then those modifications will be lost. Since RoundTable doesn’t seem to have a Custom CSS option, best to use a CSS plugin like Custom CSS Manager to override any existing CSS.

    For example, if you add these two CSS rules, you should be able to adjust the footer height to whatever values you want:

    #footer p:first-child {
       padding-top: 0;
    }
    
    #footer {
       height: auto;
       margin-top: 0px;
       padding-top: 30px;
       padding-bottom: 30px;
    }

    What these rules do is first resets all the properties that currently contribute to the footer size/spacing. Then the last two properties for #footer, padding-top and padding-bottom, will be the only two values you’ll need to adjust the amount of space before & after the footer text.

    If you use a web debugging tool like Firebug or Chrome Developer Tools, you’ll be able to see what CSS rules you need to override for the other elements. Give me a bit of time & I can make a follow-up post with suggestions.

    Thread Starter heartcenter333

    (@heartcenter333)

    Another member gave me the coding to change the footer, There is another post I made about an hour ago that explains it…

    Thread Starter heartcenter333

    (@heartcenter333)

    Thread Starter heartcenter333

    (@heartcenter333)

    I’m downloading the plugin…

    can you tell me what the best options are for what I already did… If I need to do it again differently… so they don’t get changed back with an update… Thanks so much…

    Thread Starter heartcenter333

    (@heartcenter333)

    Ok, I pasted just what you have above in the box on the plugin… That seems to be good… for bringing the footer down…

    Yeah, I’m not sure what made her believe that you had created a child theme, all she had to do was look at your source code to see that you hadn’t.

    Well, what’s done is done. You can install a child theme if you want, but I don’t know how deep your technical ability is. A child theme also prevents theme upgrades from erasing your changes. Or you can install the plugin (or another CSS plugin, which would be easier. Then you can copy the CSS change that was suggested in the previous post into the plugin’s Custom CSS field.

    OK, nevermind what I wrote, you already installed the plugin, which is good (and you work fast!). Let me take a look at the other CSS that you’ll need for the other changes that you want.

    Thread Starter heartcenter333

    (@heartcenter333)

    Sure! thanks! ??

    Thread Starter heartcenter333

    (@heartcenter333)

    Should I copy what the other member wrote in the box on that plugin?

    Thread Starter heartcenter333

    (@heartcenter333)

    Just did, not sure how it works… ??

    Thread Starter heartcenter333

    (@heartcenter333)

    Umm… There’s a big gap at the bottom of my sites pages… (the footer) I’m not sure what made it do that… I posted the CSS you gave me above, and then posted what she wrote me after…

    Thread Starter heartcenter333

    (@heartcenter333)

    Ok, I changed the original CSS back, and left only the new coding in the box on the plugin… I am playing with the code you gave me, I only notice it changing the placement of the words. Is this what it is supposed to be doing?

    My tech skills are not very savvy, but I am determined to build my site on my own and learn… ??

    Put her CSS first before mine, then my CSS can override hers. By the way, this:

    #footer p:first-child {
       padding-top: 1;
    }

    should be this:

    #footer p:first-child {
       padding-top: 0;
    }

    Thread Starter heartcenter333

    (@heartcenter333)

    ?? ok much better.. Thanks!!! Yea I was playing with that and noticed that I must have done something there… That issue is solved…

    Do you have any ideas about the text colors for the main body and titles?

    Thread Starter heartcenter333

    (@heartcenter333)

    Just to make them black…

    Not sure what I should do about the navigation, so I will think about that one first… and tend to it at a later date…

    I don’t want to keep too much of your time, you are probably busy answering a ton of these questions… ??

Viewing 15 replies - 1 through 15 (of 36 total)
  • The topic ‘A few changes…’ is closed to new replies.