• senoritagracia

    (@senoritagracia)


    Should I not be doing that? How can I make the same edits in the style sheet but in the Edit CSS? when I go to Edit CSS I get a blank page what am I supposed to put in there? Do I copy and paste only the bits and pieces of the style sheet I need to edit and then make changes?

    I am a novice at php and its been difficult to figure out how to make all the changes I need for my site– GraciamariaStudio.com– I’m currently trying to get rid of a glitch in my navigation bar.. when I hover over a page title into the subpages it flickers like crazy. What I really want is for each page title to go into a vertical drop down menu with all my subpages.

    Any help is so greatly appreciated! operating on Suits theme

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter senoritagracia

    (@senoritagracia)

    wooo! I got it!
    for anyone else who may need the answer:
    I changed the code in the theme’s style sheet from

    .nav-menu .sub-menu,
    .nav-menu .children {
    	background-color: #404040;
    	border-top: 0;
    	-webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    			box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    	display: none;
    	opacity: 0;
    	padding: 8px;
    	position: relative;
    	left: 0;
    	z-index: 99999;

    to:

    .nav-menu .sub-menu,
    .nav-menu .children {
    	background-color: #404040;
    	border-top: 0;
    	-webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    			box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    	display: drop;
    	opacity: 0;
    	padding: 8px;
    	position: absolute;
    	left: 0;
    	z-index: 99999;

    notice display and position

    Thread Starter senoritagracia

    (@senoritagracia)

    I still would like some clarifications of the very first paragraph if anyone can help me out with that. thx

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘I am editing the theme style sheet’ is closed to new replies.