sweetdreams16
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Enigma] Navigation like on mobileThanks a lot man !
Forum: Themes and Templates
In reply to: [Sydney] [Theme: Sydney] – Transparent body only on 1 pagei think man that every page has it’s ID …so for the page that you posted ID is 904 as you can see on screenshot:
https://prntscr.com/c0edpgSo if you want background to be transparent on the page you posted , put this in your css.
.page-id-904 .page-wrap .content-wrapper {
background: transparent !important;
}Forum: Themes and Templates
In reply to: [Hueman] Change background color of footer widget areaI’ve just tried on localhost to edit the footer widgets area. Download Simple Custom Css plugin , install it and activate it. Then go to Appearance > Custom CSS and there you add next:
#footer-widgets {
background: #000;
}It works like a charm on my localhost.
Forum: Themes and Templates
In reply to: [Hemingway] Space between nav and contenttry to put this in your css and tell me if it works
.wrapper {
margin-top: 30px !important;
}Forum: Themes and Templates
In reply to: [Hueman] Change background color of footer widget areaare you using child theme ?
Forum: Themes and Templates
In reply to: [Zenzero] Change color of header barno problem ??
Forum: Themes and Templates
In reply to: [Hueman] Change background color of footer widget areaadd this to your css
#footer-widgets {
background: #000;
}this will give you black background, if you want any other color just change #000 to hex code you wish
Forum: Themes and Templates
In reply to: [Zenzero] Change color of header baradd this to your css
.site-header {
background: #fff; !important;
}but then the links will be white colour so you have to change the color of the links. if you want black links and white header then add this
.site-header {
background: #fff; !important;
}.main-navigation li a {
color: #000;
}Forum: Themes and Templates
In reply to: No hover colors in Tickled Pink by Restored 316put this in your css
.genesis-nav-menu a:hover,
.genesis-nav-menu .current-menu-item > a {
color: #00CED1 !important;
}Forum: Themes and Templates
In reply to: [Simona] Image at the topForum: Themes and Templates
In reply to: [Amadeus] Button for Read More & Font size doesnt not changeI just tried via inspect element to change the font size and it works.
Forum: Themes and Templates
In reply to: No hover colors in Tickled Pink by Restored 316it works if you put !important after the color you want
Forum: Themes and Templates
In reply to: [Enigma] Navigation like on mobilei did this Predrag, and it seems to be fine, but when i click on the menu it shows up for about half second and dissapears. Here is the link so you can check it if you can.
Forum: Themes and Templates
In reply to: [MesoColumn] Show logo title webwebsite link?
Forum: Themes and Templates
In reply to: How do I change the central background on my homepage?in your css add
#content {
background: transparent; !important;
}and if you need some border you can go
#content {
background: transparent !important;
border: 3px solid #fff;
}this will add white border to your content and it will be transparent without white background