Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 10 of 10

Thread: Top Menu Dropdown really small

  1. #1
    sam.bengtson is offline Member
    Join Date
    Jan 2011
    Posts
    64

    Default Top Menu Dropdown really small

    Hi guys, the dropdown box from my categories and department tabs across the horizontal menu are really small! So small that the font is unreadable and they are almost unclickable. I'm not sure how else to describe this. Does anybody have a solution to increase the size of these? Thanks

  2. #2
    ASPAlfred is offline Senior Member
    Join Date
    Nov 2007
    Posts
    2,244

    Default

    Would be better if you can post a screen cap or site URL so we can see.

    Do you have recent changes to your css prior to the problem?

  3. #3
    sam.bengtson is offline Member
    Join Date
    Jan 2011
    Posts
    64

    Default

    yeah sorry about the picture size. I had to make it big so you could see what I'm talking about. But no it was like that when I originally got the software I just have been putting it off until now. I have no idea why it looks the way it does
    Attached Images Attached Images  

  4. #4
    sam.bengtson is offline Member
    Join Date
    Jan 2011
    Posts
    64

    Default

    anyone? this is driving me nuts

  5. #5
    data77 is offline Member
    Join Date
    Oct 2010
    Posts
    75

    Default

    Yes sir ..weird things happen a lot. What version are u using?
    Solution: You have to make sure to take unnecessay Style sheet in your skin folder.
    Eat my code!
    Multistore V 9 sp1
    Best Hosting for your storefront Business in 2011

    http://fasoservice.com
    world wide directory submission
    http://Nanalist.com
    Burkina24 Media news in Burkina Faso
    http://burkina24.com

  6. #6
    sam.bengtson is offline Member
    Join Date
    Jan 2011
    Posts
    64

    Smile thanks for the reply!

    Version 8..what do you mean by unnecessary styles? I only have 1 style page in the skin that im using. There doesn't seem to have any reference to the drop down in there unless im missing something

  7. #7
    ASPAlfred is offline Senior Member
    Join Date
    Nov 2007
    Posts
    2,244

    Default

    What version is this? How about trying the stock skin (i.e. yoursite.com/default.aspx?skinid=2)? Can you check and see if they've got the same results?

    That's definitely a css issue, if this is v8 please open style.css from {root}/skins/skin_# and tell me what's in {.MenuItem, .MenuItemHover, .MenuItem td, .MenuItemHover td} class.

    BTW, did someone customize the skin for you? If yes, then they should be able to give much assistance.

  8. #8
    sam.bengtson is offline Member
    Join Date
    Jan 2011
    Posts
    64

    Cool Thanks for the reply

    Code:
    .MenuItem, .MenuItemHover, .MenuItem td, .MenuItemHover td
    {
        color: #000;
        border: solid 0px black;
        cursor: hand;
        cursor: pointer;
        margin: 0;
        background: #F8F8F8 none;
        width: 100%!important;
    }
    I've done all the customizing so far by myself so I'm kind of on my own here. The other skins do not do this so I must have accidentally changed something in the process here

  9. #9
    sam.bengtson is offline Member
    Join Date
    Jan 2011
    Posts
    64

    Question

    do you see anything that would cause this?

  10. #10
    sha87 is offline Member
    Join Date
    Oct 2010
    Posts
    31

    Default

    I'm not sure if this will help, but for me (v9), I can change the size of the font in the drop-down menu by editing this part of style.css (Inside App_themes\skin_1)

    .aspnetMenu_DynamicMenuStyle
    {
    font-size:12px;
    [More stuff here]
    }

    It's toward the bottom of style.css for me. And since you are increasing text size, you'll need to increase the height of the menu items as well (line-height):

    .aspnetMenu_DynamicMenuItemStyle a:active,
    .aspnetMenu_DynamicMenuItemStyle a:link,
    .aspnetMenu_DynamicMenuItemStyle a:visited
    {
    [Font stuff here]
    line-height: 15pt;
    [More stuff here]
    }

    I have not used v8, so please be sure to make a backup of your style.css if you change the sections I mentioned I'm not sure if v8 has those in the style sheet either.
    Last edited by sha87; 01-18-2011 at 08:38 AM. Reason: Added line height