How to Customise Quick Launch in Blog

Hi All,
I am trying to customise the css for the quick launch on a blog site and cannot get the text on hover color to display correctly?
I have also tried using a theme (built with the palette tool) and the navigationhover text also doesn't display even though it is set and saved in the tool.
Can anybody give me some pointers.
Thanks in advance.

Hello Stonecoldice,
Please refer to below mentioned URL. It talks about the same as your requirement. https://www.nothingbutsharepoint.com/sites/eusp/Pages/Brand-SharePoint-Quicklaunch-Menu-links-Backgrounds.aspx
<style>
.s4-ql UL.root > LI > .menu-item {
BACKGROUND: url(http://branding/team/SiteAssets/qlmenu.png) no-repeat 0px -10px; min-height:30px;
.s4-ql UL.root UL > LI > A {
BACKGROUND: url(http://branding/team/SiteAssets/qlmenu.png) no-repeat 0px -10px; min-height:30px;
}</style>
Thank You, Pallav S. Srivastav ----- If this helped you resolve your issue, please mark it Answered.

Similar Messages

  • How to disable Quick Launch on Pavilion dv8t-1100

    The Treble keeps fluctuating, and the wireless connection keeps randomly turning off. I've already tried disabling it through msconfig, and uninstalling the drivers. No dice. I'm pretty sure this is a hardware issue. I honestly don't care if my warranty is voided for opening my computer.

    i have the same exact computer. i just got it today, and the same thing with the same buttons has been happening to me. this is so evil.

  • Quick Launch buttons not working on Window 8.1

    I have installed window 8.1 but quick launch buttons, which used to work with combination of FN key, for example fn+F3 key for brightness, fn+F8 for volume, fn+F6 key to lock the computer etc are not working. What is the solution?

    Farhan_Raza
    I have available a pretty extensive list and I cannot find a Quick Launch Driver for Windows 8.1.  Might be one; I don't see it.
    I use a completely different arrangement of Custom Toolbars from what most people use so I am not at all sure what constitutes a Quick Launch.
    I did find the following that may be close to what you seek:
    How to enable Quick Launch in Windows 8.1
    =========================================================================
    Possible Option - HP Launch Box Manager
    Windows 8.1 provides the following -- this program MIGHT install on your computer and it might run on your computer.  It is not rated for your system.  You may try it if you like.  Windows will tell you if the program is not appropriate for your system.
    For Windows 8.1, you might be able to use the HP Launch Box Manager:
    Close running programs, browsers, and games
    Next:
    Create a Restore Point:
    Create a Restore Point:   Create a Restore Point – Win7 OR  Create a restore point Win8
    Download / Save:
    sp63808 HP Launch Box V1.1.5
    Double Click or Right-Click on the file and install as Admin...
    The application installs in seconds and then disappears.
    Windows key (opens the Start Screen) > type anywhere, the word: Launch Box >
    Click to start the Launch Box Manager
    The Launch Box Manager will start on your Desktop and offer a list of available applications from which you can choose eight applications for your Launch Box menu.
    Once set up, the Launch Box Manager sits in your Task Bar.
    Right-Click to Edit the Manager OR Left Click to Open and access the items in your Application List.
    Click the Kudos Thumbs-Up to say Thank You!
    And...Click Accept as Solution when my Answer provides a Fix or Workaround!
    I am pleased to provide assistance on behalf of HP. I do not work for HP. 
    Kind Regards,
    Dragon-Fur

  • How can I remove the Quick Launch area from a SharePoint site

    We have a SharePoint site that includes a Quick Launch area by default.  We know how to add and delete items from the Quick Launch area but how can we delete the Quick Launch space (this would shift the main body portion over to the left and taking
    over the space once occupied by the Quick Launch area)?

    Hi,
    You can refer the below urls.
    http://sharepointpolice.com/blog/2010/04/07/hiding-the-quick-launch-in-sharepoint-2010/
    http://chrisstahl.wordpress.com/2010/03/15/hide-the-quick-launch-in-sharepoint-2010/
    http://sharepointpromag.com/sharepoint/four-ways-add-or-remove-quick-launch-menu-control
    Please remember to mark your question as answered & Vote helpful,if this solves/helps your problem.
    s p kumar

  • How to change the look and feel for Heading of quick launch menu in project server 2010

    Hi
    can someone tell me how to change the look and feel of Header names in quick launch.
    I want the header to be displayed in Bold with Underline to it.
    could this be possible for just header in quick launch in project server 2010. 

    Hi Rohan
    It does not work this way. You have to use a content editor webpart.
    See references below that might help you starting with this customisation:
    Http://go4answers.webhost4life.com/Example/sharepoint-2010-quick-launch-look-feel-78379.aspx
    Http://m.sharepointpromag.com/sharepoint/four-ways-add-or-remove-quick-launch-menu-control
    Hope this helps.
    Guillaume Rouyre - MBA, MCP, MCTS

  • How do I get the itunes icon to appear in the quick launch bar?

    I installed an update to the current version and lost the quick launch bar icon for iTunes. How can I get it back?
    self built   Windows XP Pro  

    Drag it from the All Programs list to the Quick Launch bar. A copy of the icon will appear.

  • How to add a link under quick launch using custom actions?

    http://msdn.microsoft.com/en-us/library/office/bb802730(v=office.15).aspx
    Custom actions allow us to create feature to add a link under site settings, site actions menu and even central admin.
     Is there any way we can extend this feature to allow links being added under quick launch? I tried providing location Microsft.SharePoint.Navigation but that had no effect

    hi
    you don't need to use custom actions in order to add links to the quick launch menu. It allows to add links programmatically to the menu items collections directly, see e.g.
    Adding Links to Quick Launch. From this link check the following example which adds an item under the Lists heading in Quick Launch.:
    using System;
    using Microsoft.SharePoint;
    using Microsoft.SharePoint.Navigation;
    namespace ConsoleApp
    class Program
    static void Main(string[] args)
    using (SPSite site = new SPSite("http://localhost"))
    using (SPWeb web = site.OpenWeb())
    // Get the Links list or create it if it does not exist.
    SPList list = web.Lists.TryGetList("Links");
    if (list == null || list.BaseTemplate != SPListTemplateType.Links)
    // Create the list.
    Guid listId = web.Lists.Add("Links", "Interesting hyperlinks", SPListTemplateType.Links);
    list = web.Lists.GetList(listId, false);
    // Check for an existing link to the list.
    SPNavigationNode listNode = web.Navigation.GetNodeByUrl(list.DefaultViewUrl);
    // No link, so create one.
    if (listNode == null)
    // Create the node.
    listNode = new SPNavigationNode(list.Title, list.DefaultViewUrl);
    // Add it to Quick Launch.
    listNode = web.Navigation.AddToQuickLaunch(listNode, SPQuickLaunchHeading.Lists);
    Console.Write("\nPress ENTER to continue....");
    Console.ReadLine();
    Blog - http://sadomovalex.blogspot.com
    Dynamic CAML queries via C# - http://camlex.codeplex.com

  • When downloading itune update on my PC (vistia)it says, error getting security: C:\Users\shawn\AppData\roaming\Microsoft\InrternetExplorer\Quick Launch\GetLastError:87, how do i fix this

    when downloading itune update on my PC (vistia)it says, error getting security: C:\Users\shawn\AppData\roaming\Microsoft\InrternetExplorer\Quick Launch\GetLastError:87, how do i fix this

    As you can see below, when I right click, I have no such option.  In the User Account Settings, I'm operating as the "System Administrator".
    Any other suggestions?

  • How to open closed quick launch area in hana modeler?

    how to open closed quick launch area in hana modeler?

    Hello Abhinay,
    Open SAP HANA studio, go to window -> open Perspective-> SAP HANA modeler. Quick launch view will be opened.
    OR
    Go to window -> show view -> others . Type quick launch in serach. or under SAP HANA folder you will get the quick launch view option.
    Regards
    Subhash

  • How do i disable auto-start in Adobe Quick Launch; elements 3.0

    how do i disable auto-start in Adobe Quick Launch; elements 3.0

    I guess i don't remember that in photoshop elements 3, so could you explain a little more about what your asking?
    What operating system are you using?
    Unless your talking about the welcome screen that gives a choice of what to start when ckicking on the pse 3 shortcut (welcome screen, organizer or editor)
    Window>Welcome in the editor or organizer
    Or auto launching the adobe photo downloader when you have a camera or camera card connected.
    Message was edited by: R_Kelly

  • My Quick launch bar at the bottom of my screen has disappeared. How do I get it back?

    I was out of town for 1 day and came to use my computer and my quick launch bar has disappeared completely from the bottom of my page.

    Apple menu > System Preferences > Sound > Show volume in menu bar.

  • How to pin a website's icon to the quick launch area.

    ''duplicate - https://support.mozilla.com/en-US/questions/901878''
    I'm used to the Internet Explorer option to create a shortcut to the desktop, then I drag the icon to the quick launch area. I don't see that option in FF.

    You can drag the favicon on the left end of the location bar onto the desktop to create a shortcut.
    You can also use an extension.
    * SaveLink: https://addons.mozilla.org/en-US/firefox/addon/savelink/
    * Deskcut: https://addons.mozilla.org/en-US/firefox/addon/deskcut/

  • How to customize the Quick Launch with Security

    I would like to add links to the quick launch with security control - some menus only show to specific user groups.
    But I do not find any way to do that, either through configuration or custom codings. Would you please advise on that? Thanks.
    Kevin Li

    Hi Kevin,
    By default, the quick launch links are managed through glabal permissions. For instance, users belonging to security groups without the "view approvals" permissions will not see the "approval center" link in the quick launch menu.
    Meaning that dealing with permissions and security groups will allow you configuring the quick launch items by groups.
    As far as I know, there is no other way to manage security for the quick launch links. Maybe other experts on this forum will give us more insight about coding this feature if possible.
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • SharePoint Foundation 2010 - Display Site Pages on the Quick Launch

    how do you display site pages on the quick launch?
    sukai

    Try below:
    http://sharepoint.stackexchange.com/questions/28056/how-to-display-subsites-and-their-sitepages-via-the-quick-launch-navigation-menu
    http://office.microsoft.com/en-in/sharepoint-server-help/configure-the-quick-launch-for-site-navigation-HA102130960.aspx
    http://stackoverflow.com/questions/3636366/display-quicklaunch-on-webpartpage-in-sharepoint-2010

  • HP CQ41-224 TX : HP Quick Launch Button did not funtion on Windows 7 Home Premium 64 bit

    Hello,
    I have bought a new notebook HP CQ41-224TX without OS (free dos) and upgrade the momory to 4 Gb.
    I have installed this notebook with Windows 7 Home Premium 64 bit and all HP CQ41-224TX driver 64 Bit.
    All function on this notebook running well accept Fn+F7 and Fn+F8 (for brightness) do not work.
    I have reinstall the HP Quick Launch Button, but nothing changed.
    Does Anyone has this problem.? and how to solve this problem.. pls let me konw. Thanks
    Regards
    Febrianr

    Hi lustyln,
    I'm having a little trouble understanding all of what you are trying to explain. From what I can tell, it sounds like your PC has a lot of software problems and you want to know what is supposed to be there and what isn't.
    For reference, here are your product specifications:
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&dlc=en&docname=c01893242&lc=en&product=4043282
    To get your PC software back to how it was when it was first purchased, run a system recovery:
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&dlc=en&docname=c01867418&lc=en&product=4043282
    I hope this helps.
    ...an HP employee just trying to help where I can, but not speaking on behalf of HP.

Maybe you are looking for

  • How to add a flex marker on the right edge?

    When I place the pointer over or beside a left edge I can change left edge. The audio material is time compressed up to the preceding flex marker when I move the left marker to the right. If I place the pointer over or beside a right edge and move to

  • Text ID  for text object MATERIAL does not exist - MM01

    Hi All, I am getting below error message when trying to save Material Master in MM01. Text ID  for text object MATERIAL does not exist Message no. TD603 Diagnosis You want to edit a text. However, the text ID (text type) of the specified text object

  • Basic Questions/Advice

    I would like to create a series of instructional videos that will be placed on a DVD and become linked from a main menu. Some of the primary links on the main menu will open new menu pages with additional links for other videos. 1.) I am not sure if

  • Wrong production order connected to a sales order - how to change?

    Hello all! We are using ERP ECC6 - I now I'm in SCM but this has to do with PP and there was no other forum. I have following problem: After the MRP a production order was created for a sales order. Because of the production in another plant the prod

  • Custom Pricing load in R/3 - Delta to CRM

    Can you pls help us solve the issue, if we are missing something. We have a custom program, that is being used to laod the data into pricing tables in R/3 system. However the data is not flowing to CRM as delta. Can you pls let me know what we need t