Help me find my way around in WordPress?

Hi all,
I need to know where to go in the back-end of WordPress to make changes. :slight_smile: I have experience in Joomla so the learning curve can’t be that drastic. :smiley:
Where would I go to change the header that starts off with the word Mid… on the top of the page?
Find Link Here
Thanks. I am sure I will have more questions soon. :slight_smile:

That site is built on the WordPress premium theme Whiteinc. What kind of customization does the theme allow you to do?

Any idea why that blue strip is on top?

Also, when I added text to a page the bottom of that page went extended past the white backdrop. Is this something I fix through css? Thank you.

Depends on what you want to change… if it’s just the style, you could either install a custom CSS plugin or fork a child theme and override the parent styles in the child’s style.css.

If you want to change the way the HTML is generated, this might be a bit more tricky. Your best bet would be to contact the vendor of the theme, I suppose; but essentially you’d also fork a child theme and override certain functions of the parent.

Because of

#header {
    margin: 0 auto;
    padding: 0;
    border-top: 4px solid #6bd3f4;
}

If you don’t want the strip, add

#header {
    border-top: none;
}

(Don’t just remove that style from the theme’s style.css as it will return with the next theme update.)

Probably yes… can you provide a live example?

Hi again,
In WordPress can I add links (hot spots) to this graphic? I see that I can add a link but not links for each of the town names for each graphic.
Also, they want the Current Events that is on the left hand side of the page only one on page not the rest. But this is written in php for each page so it’s for the entire website, am I correct?
I really appreciate your help.

Website

Hi again,
How do make a widget show up in one page and take it out of another? Also, how do I make the Welcome page the landing page and the landing page the welcome page?
Thanks :slight_smile:

I think I remember. I copy and paste what is in each page, one to the other.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.