Waleed Asif
Waleed Asif

Reputation: 199

How to edit HTML in wordpress backend

I am using the "Avada" theme in WordPress. I would like to make small changes in the mobile menu, any ideas on how can I edit it. I know in WordPress backend I can only find PHP files that are generating HTML.

In the following screenshot, I would like to move the button tag above a tag. Any ideas would be great.

HTML

Upvotes: 0

Views: 293

Answers (1)

OverdueOrange
OverdueOrange

Reputation: 99

You could try and do what @Justin said here.

Code here:

#flex { display: flex; flex-direction: column; }
#a { order: 2; }
#b { order: 1; }
#c { order: 3; }
<div id="flex">
   <div id="a">A</div>
   <div id="b">B</div>
   <div id="c">C</div>
</div>

To edit within Avada follow this path:

Dashboard > Avada > Theme Options > Custom CSS

Enter your relevant css in there:

.fusion-bar-heighlight {
//Your CSS
}

Custom CSS entered here will override the theme CSS. In some cases, the !important tag may be needed

Upvotes: 0

Related Questions