• Xsavior80

    (@xsavior80)


    Hi all,

    Have a few questions which I hope you guys can assist me.

    My website is: http://www2.alpha.com.sg/

    1) I have a sub menu over the page ” Our services” but somehow when I click on the menu “Our services”, it does not open up the page. Only if I right click and use the “open in a new window or tab” then I am able to open that section. Is there any way I can code it to make “Our Services” open when I just left click it?

    2) From what I have done so far, the whole website seem very big. Is there a way that I can customize it in a such a way that everything will just fit nicely into 1 page without having to scroll down?

    3) It seems like there is quite a big space in the menu section. Can I actually make it smaller? And also is there a way I can do a 4 by 4 menu in that section instead of 6 by 6 menu? Or is it possible to resize the menu bar to fit 8 menu in the whole row instead of 6?

    Thank you for your help in advance.

    Regards,
    Peter

Viewing 10 replies - 1 through 10 (of 10 total)
  • wpimran

    (@wpimran)

    Hi,
    1) Use this css in Theme Options Custom Css Editor
    to reduce the height of menu section.

    .navbar-collapse.collapse{
    height:0px !important;
    }

    2) You have set .container { width: 100%; }.
    may be in your theme options custom css field.
    try removing it or use this css in Theme options custom css editor
    .container { width: 1170px; }

    3) Paste following js code at the end of the /js/enigma_theme_script.js file

    jQuery(".nav .dropdown-toggle").click(function () {
        window.location = jQuery(this).attr('href');
        });

    Thanks

    Thread Starter Xsavior80

    (@xsavior80)

    Thanks for the reply. Can I ask if it actually possible to remove the whole logo section from theme as well if I do not want to put a custom logo?

    Thank you.

    weblizar_support

    (@weblizar_support)

    Hi,

    Go to Dashboard Admin Panel >> Appearance Menu >> Theme Options >>

    General Options.

    Enable Text Title.

    or if you want to remove whole logo section then use given below CSS

    rules into custom CSS box :

    .logo {
    display:none;
    }

    Save the changes.

    Thanks

    Thread Starter Xsavior80

    (@xsavior80)

    Hi,

    The above css code work for the removal of the logo section.

    However I still have 1 small issue. Are there any css codes or html code that I can put inside the page that can allow me to resize all my contents into 1 full page without having the user to scroll down just to see the last bit of information?

    Thank you for your help. πŸ™‚

    weblizar_support

    (@weblizar_support)

    Hi,

    We can resize the page content but we can’t fixed the pages

    Because if you have more content then page will be scroll down.

    If you want to resize your page content then inspect the element and

    copy the class or id into custom css box. and save the changes.

    EX:
    .class{
    font-size: 6px;
    }

    Note: You can change the .class with your element class and change the

    font-size according your requirement.

    Thanks

    Thread Starter Xsavior80

    (@xsavior80)

    So there is no way to remove the scroll bar? as you see, there are a few pages in the website like ” Our Directors” and “Commendation” whereby actually only the footer cannot be seen and there are plenty of space that I can reduce if it is possible.

    And also I realize in google chrome and firefox, the menu bar look ok and is in straight line but however in IE, the “Contact us” drop down to the next level as if the custom css is not working there. Any suggestions on how to fix that?

    Thank you.

    Its ” 2015 “

    Running on your Server.

    Thanks

    Thread Starter Xsavior80

    (@xsavior80)

    Thank for the headup. Seems like either my IT manager accidentally switched the theme or something changed it to the 2015 theme. I switched it back to Engima again already.

    Hi Xsavior80,

    Just tested you Site in IE 10 and works well.

    Thanks

    could you please solve problem 1 with answer 3 of menus but for mobile?
    your code was successful for desktop site but problem still exist on mobile

    BR///

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

The topic ‘Some questions regarding the theme.’ is closed to new replies.