custom CSS in DYAD theme..
-
hello,
within the DYAD theme, is it possible to:
a. remove transparent black filter over homepage image
b. replace default footer ‘Blog at WordPress.com. | The Dyad Theme.’ with something customised
c. remove category tags (that appear above post headings) from all single poststhanks in advance..
The blog I need help with is: (visible only to logged in users)
-
Hi, Go to Appearance > Customize > CSS, delete all the informational text in that window, and paste in the following custom CSS to take away the translucent black background color.
.site-banner .site-banner-media::before, .banner-custom-header .site-banner-media::before { background: rgba(0, 0, 0, 0); } -
b. replace default footer ‘Blog at WordPress.com. | The Dyad Theme.’ with something customised
You are not allowed to hide or edit the WordPress.com and theme footer credits per our Terms of Service (See #1 Attribution). Even the VIP sites here at WordPress.com (CNN, Time, etc.) are required to keep the footer credits. See the Frequently Asked Questions on the Custom Design support page for more information.
You are allowed to restyle the footer credits to better fit with your design as long as they remain readable. If you would like to add a copyright or something to the footer, that can be done. Here would be the basic code. I’ve included some styling to make the text you add stand out more.
.footer-bottom-info:before { content: "This is my Text"; display: block; font-size: 120%; font-weight: bold; color: #fff; letter-spacing: 1px; }And the following will hide the tags/categories from above the titles on single post pages.
.single .entry-meta { display: none; } -
problem solved!!
thank you @thesacredpath for your helpful reply..
i really appreciate it.. -
-
-
-
- The topic ‘custom CSS in DYAD theme..’ is closed to new replies.