batharoy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [illustrative] How to stretch ContentThis would not be an easy task as most of the elements have a fixed width.
The theme also uses images as backgrounds for certain elements and would need to be altered to fit the new width.
The theme also has not been updated in more than 3 years, may be compatibility issues.Forum: Themes and Templates
In reply to: Customizing 20-12 ThemeI will research the leave reply thing, need to check the php files for that.
I think you can use the appearance > options for uploading a header image.Headed to bed 3am here now.
Here’s a video that shows how to use chrome dev tools for WP theme editing.
https://www.youtube.com/watch?v=BmOyxceYAO4Forum: Themes and Templates
In reply to: Customizing 20-12 ThemeSomething is injecting the color code into the html so it over rides the css.
Try adding !importantbody.custom-background { background-color: #9cac87 !important; }Forum: Themes and Templates
In reply to: Customizing 20-12 ThemeTry
.site-header h2instead of.site-description.Forum: Themes and Templates
In reply to: Customizing 20-12 Themedon’t forget # before color codes.
body.custom-background { background-color: #9cac87; }Forum: Themes and Templates
In reply to: Customizing 20-12 Themebody.custom-background { background-color: red; }Forum: Themes and Templates
In reply to: Customizing 20-12 Theme1.
body.custom-background
2..nav-menu
3.#secondary
4..site-title
5..site-description
6.#primaryForum: Themes and Templates
In reply to: Customizing 20-12 Themechange the size of Site Title and not Post Titles?
change
.entry-header .entry-title a
to
.site-title aForum: Themes and Templates
In reply to: Customizing 20-12 ThemeChange the #page so it looks like this.
#page { margin-top: 20px; margin-bottom: 20px; }Forum: Themes and Templates
In reply to: Customizing 20-12 ThemeChange the .entry-header .entry-title a so it looks like this:
.entry-header .entry-title a, .entry-title { color: #ff0000; }You can change the color code to your liking. A good color selector can be found here.
h1, h1 a { font-size: 50px; }Change the size to what looks good for you.
Forum: Themes and Templates
In reply to: Customizing 20-12 ThemeForgot to add
text-align: center;to the #holy-islam selector, you can add just below the font-weight: bold;And then some more added to the bottom of style.css
.site-content article { margin-bottom: 2rem; } #colophon { margin-top: 0; }Forum: Themes and Templates
In reply to: Customizing 20-12 ThemeAdd to the style.css in appearance > editor.
#holy-islam { margin: 12px auto 0; font-size: 10px; font-weight: bold; } #page { margin-top: 20px; } .site-header h1, .site-header h2, .main-navigation div.nav-menu > ul { text-align: center; } .main-navigation li { margin: 0 1.5rem 0 1.5rem; } .entry-header .entry-title a { color: #ff0000; }Forum: Themes and Templates
In reply to: Customizing 20-12 ThemeWe will use css to style it so you can remove everything but the <div>
Forum: Themes and Templates
In reply to: [Reizend] How to Change The Font Color Of Content?Use a custom css plugin if your theme does not have an area to enter custom css.
.entry-content, #secondary .widget a, #secondary-left .widget a { color: #333; }Forum: Themes and Templates
In reply to: Customizing 20-12 ThemeLooks OK here too except the background color. We will get to that.
Go into appearance > editor, select the header.php and remove the top line you added then paste the following code just below this tag.<body <?php body_class(); ?>>
<div id="holy-islam">IN THE NAME OF ALLAH MOST GRACIOUS MOST MERCIFUL</div>