简体   繁体   中英

Trouble with modifying wordpress theme

I'm working with modifying a Wordpress theme. The theme is named glare and i would like to do the following. (URL: http://tofsti.no/letsbuzz/ )

Remove the background from the menu, so that only text shows. I have tried:

div.row.transparent{
  visibility: hidden;
}
#navigation .nav a {
  color: #fff;
  font-size: 20px;
}

But the visibility:hidden; hide the menu... What to do?

I would like to push the gallery images up (testgallery url: http://tofsti.no/letsbuzz/?galleries=test ) - a couple of px below the menu. How to do this? I have tried:

div.row.col-listing{
  top: 200px
}

Use the following CSS for the menu and it should work:

header .transparent, #navigation .nav a {
    background:none;
}

Everything in your theme that has a class of .normal has a very large margin-top value (232px):

.container .normal {
    margin:0; /* or add whatever value works for you */
}

question 1: Since the div contains both the text/links and the background it all disappears when visibility is "hidden" .

I'm guessing there is an opacity: setting somewhere, set to something like 0.5 .

Does removing the background-color value and setting the opacity to 1 work?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM