Problems With Template / Framework - Question | JoomShaper

Problems With Template / Framework

hanish

hanish

Helix Framework 1 year ago

Hello, Joomla 4.2.2 and latest vesions Page Builder and template Nuron https://fin-sup.com

My problems are:

  1. hidden right side of the main menu

  2. Where can I edit this part of template

  3. How can i put my own text or menu (modules) into topbar?

  1. Can i put "slider" under the header (and then change opacity of the header with e. g. css). I Want to have tranparent header like this

Now slider section is just below.

thank you in advance for your help :)

0
3 Answers
Ariba
Ariba
Accepted Answer
Support Agent 1 year ago #86426

Hello

Thank you for your query.

  1. Please add the following css rule in custom css section .sp-megamenu-parent { margin: 0px; }
  2. Kindly check the screenshots below - I have highlighted from where the image & color is generating

fin-sup-bottom-1.JPG

fin-sup-bottom-2.JPG

  1. Create your module and use "Top1" & "Top2" as position.
  2. Use the following css code. Set your color by changing the rgb value and change the alpha (a) value for transparency: #sp-header { background-color: rgba(0, 0, 0, 0.3); }
0
hanish
hanish
Accepted Answer
1 year ago #86716
  • 1 Nothing changed :(
  • 2 OK - thx :)
  • 3 OK - thx :)
  • 4 You didnt understand me - i want it tranaperent even without scrolling but slider is below header so we cant see it (like here rawmeble.pl)

my custom.css file:

/*  1    */
.sp-megamenu-parent { 
    margin: 0px; 
}
/*  2    */
#sp-footer .container-inner::before {
    content: none !important;
}
/*  4    */

#sp-header{ 
    background-color: rgba(0, 0, 0, 0.3); 
}
0
Ariba
Ariba
Accepted Answer
Support Agent 1 year ago #87527

Thank you for your patience. Kindly use the following css instead - to make the header transparent & to position the slider under header.

#sp-header{ 
    position: absolute;
    background-color: rgba(0, 0, 0, 0.3); 
}
0