• Resolved windspeed

    (@windspeed)


    Hello,
    On my footer menu, the column headers are all <h1> ‘s and I need to edit them to change to H2’s or less. Where do I find them to edit them?
    At the footer of the page I need help with there are 5 columns headed ‘Where are we?’, ‘Quick Links’, ‘Shop’, ‘Resources’ and ‘The Paperwork’. These are the headers I need to edit down from <H1>’s.
    (I’ve tried to post a screenshot here to show what I am looking at but I can’t find out how to paste the screenshot)
    Thanks
    Chris

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter windspeed

    (@windspeed)

    I’ve just worked out how to embed a screenshot! Hope this works.

    <script async src=”//s.imgur.com/min/embed.js” charset=”utf-8″></script>

    Hello,

    Try adding the below code to the oceanwp child theme’s functions.php file to change the heading tag –

    function prefix_widget_heading($heading) {
        $heading = 'h4'
        return $heading;
    }
    add_filter( 'ocean_sidebar_heading', 'prefix_widget_heading' );
    Thread Starter windspeed

    (@windspeed)

    Hi Amit,
    Thanks for the answer, I’ll add that now.
    I’d like to know what this section is called and how I can edit it in the future.
    Is it a footer or a menu?
    Is it a widget or a template?
    Where can I find it to edit it?
    Thanks
    Chris

    That is called Footer Widget section and you can add widgets in it from the Dashboard > Appearance > Widgets page.

    Thread Starter windspeed

    (@windspeed)

    Thanks again. I actually found it in Theme Panel – My Library. Not sure how it ended up there but I’ve at least found it. Thanks

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Change ‘s in footer groups’ is closed to new replies.