detourdumonde
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Where to change "About the author" in my files ?I’m using “the 7”.
The translation files mo/po won’t open in poEditor, I don’t know why :/
I’d prefer not to use an other plugin, do anyone have an idea where to find the line directly in the files ?
Forum: Fixing WordPress
In reply to: Single post title / author / date etc. not displayingHope it will help you
Forum: Fixing WordPress
In reply to: Single post title / author / date etc. not displayingCSS in style.css:
#authorarea{
background: #f0f0f0;
border: 1px solid #d2d2d2;
padding: 10px;
width:500px;
overflow:hidden;
color: #333;
}
#authorarea h3{
font-size: 18px;
color:#333;
margin:0;
padding:10px 10px 5px 10px;
}
#authorarea h3 a{
text-decoration:none;
color: #333;
font-weight: bold;
}
#authorarea img{
margin:0;
padding:10px;
float:left;
border: 1px solid #ddd;
width: 100px;
height: 100px;
}
#authorarea p{
color:#333;
margin:0;
padding:0px 10px 10px 10px;
}
#authorarea p a{
color:#333;
}
.authorinfo{
padding-left:120px;
}HTML in single.php :
<div id=”authorarea”>
<?php echo get_avatar( get_the_author_meta( ‘user_email’ ), 70 ); ?>
<h3>About <?php get_the_author(); ?></h3>
<div class=”authorinfo”>
<?php the_author_meta( ‘description’ ); ?>
” rel=”author”>View all posts by <?php get_the_author(); ?> <span class=”meta-nav”>→</span>
</div>
</div>Forum: Fixing WordPress
In reply to: Changing header size: Changes are bring overriden(not in your plugin, in the theme, for me it overdrives better)
Forum: Fixing WordPress
In reply to: Changing header size: Changes are bring overridenDo you have a custom css part in your theme ?
Forum: Fixing WordPress
In reply to: My site is extremely slow but working fineYou can use plugins to auto compress your images. It works well for me !
Forum: Fixing WordPress
In reply to: How to centre a table on a pageJust like search engines, most screen readers read web pages in the order that they are displayed in the HTML. And tables can be very hard for screen readers to parse.
This is because the content in a table layout, while linear, doesn’t always make sense when read left-to-right and top-to-bottom. Plus, with nested tables, and various spans on the table cells can make the page very difficult to figure out.
This is the reason that the HTML5 specification recommends against tables for layout and why HTML 4.01 disallows it. Accessible web pages allow more people to use them and are the mark of a professional designer.
Forum: Fixing WordPress
In reply to: Can't edit menu in WP 4.2.3Did you try on an other computer ?
Forum: Fixing WordPress
In reply to: Why my wordpress dashboard is not working?Did you install a plugin in wordpress ? (I assume you spoke about your browser’s plugins in your message.
Forum: Fixing WordPress
In reply to: Converting a html site to WordPressYou juste have to copy paste your content for each page, no automatic way in my opinion.
Forum: Fixing WordPress
In reply to: Googlebot cannot access CSS and JS files on https://www.Sometime I got an alert and after a checkup it’s nothing. I don’t have an idea about what happened …
It seems all right now.
Forum: Hacks
In reply to: how to add a text box on home pageYou can use a theme with a visual composer if you don’t have knowledge in coding. Then you ll just have to drag and drop a text box where you want it to be displayed.
Forum: Fixing WordPress
In reply to: How to stop comments?You could also have unchecked the comment box on each page/article. You have to display the comment box in the backoffice then uncheck “allow comments”
Forum: Fixing WordPress
In reply to: Category Archives WidgetI don’t know what is your widget, maybe try an other one (you can find a lot of it in “plugins”)
Use opacity like this : https://www.w3schools.com/css/css_image_transparency.asp