Help With Customizing Menu Header In Fortune Template - Question | JoomShaper

Help With Customizing Menu Header In Fortune Template

H

Hector

Template 3 years ago

Hi there,

I need some help to customize the menu header in the Fortune template please.

My website is https://staging.aprendemindfulness.org

This is what I am trying to achieve:

  1. I would like the menu to be displayed to the right.

  2. I want the content blocks to automatically start below the menu, regardless of the device of the user. Right now, depending on the device, there is a gap between the menu and the first block.

See this screenshot: https://imgur.com/a/xLvK3mm

  1. I need the menu to not have a translucid background like it is right now.

See this screenshot: https://imgur.com/a/dzCI1Mq

Many thanks! Hector

0
4 Answers
Pavel
Pavel
Accepted Answer
3 years ago #196

Hi Hector. 1

#sp-menu > .sp-column {
    justify-content: flex-end;
}

2

/*Correct this in your custom.css file on line 37*/
.body-innerwrapper {
    padding-top: 100px;
}

3 Part of the code from Mehtaz (only this)

#sp-header.header-sticky{
  background-color: white !important;
}
0
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 3 years ago #181

Hi, Use this custom css

#sp-header.header-sticky{
  background-color: white !important;
}
@media (min-width: 1024px){
div#sp-menu {
    position: relative !important;
    left: 325px;
}
}

Add this css code inside the custom.css file. Note: Path towards custom CSS: Extensions>Templates>Styles> Click on your current default template name then choose Template Options. Then find custom CSS within the custom code. https://prnt.sc/pu705g https://prnt.sc/pu70zn In Extensions>Template> Template Options > Custom Code > Custom CSS please add this Thanks

0
H
Hector
Accepted Answer
3 years ago #260

Thank you very much Mehtaz and Pavel! =)

0
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 3 years ago #321

You are most welcome

0