codeManiac
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Afterlight] Center Align Media ImageOups sorry It’s late here so …
Anyway here is how to do it :
in your style.css file look for
.content-area { max-width: 833px; }and add margin: 0 auto; to become
.content-area { margin:0 auto; max-width: 833px; }Forum: Themes and Templates
In reply to: Remove white background on posts and pagesHey DorianKoci !
Note that if you remove the white background, it will affect the readability of your content. Here is how to do it:
in your style.css search for this code :.hentry { background-color: white; border: 1px solid #cccccc; border-radius: 3px; margin-bottom: 1.5em; }and change it to
.hentry { background-color: transparent; ===> this will make bg transparent border: none; ===> in case you want to remove borders border-radius: 3px; margin-bottom: 1.5em; }Forum: Themes and Templates
In reply to: [Afterlight] Center Align Media ImageHey LHFashion !
maybe if you post the link to the page where your image is would make things faster and more precise
Cheers !
Forum: Themes and Templates
In reply to: [Twenty Sixteen] How to make the header stickyForum: Themes and Templates
In reply to: responsive menu problemhey jak00711 !
I think the problem is in the padding.try to change padding property in your style.css
.menu a { color: #ffffff; cursor: pointer; display: block; font-size: 13px; line-height: 45px; margin-bottom: 0; margin-top: 0; padding-bottom: 0; padding: 0 21%; ===> THIS PART becomes==> padding: 0 10px; position: relative; text-decoration: none; white-space: nowrap; }I think that’s whats causing the problem, let me know if its solved
Forum: Fixing WordPress
In reply to: Pagination not workingGuys pagination won’t just appear like that you need to add it i.e
<?php the_posts_pagination( array( 'prev_text' => __( 'Newer Posts', 'textdomain' ), 'next_text' => __( 'Older Posts', 'textdomain' ) ) ); ?>I already mentioned that in the 1st comment,
and for the posts per page you don’t need to specify the number it can be controlled from the dashboardForum: Fixing WordPress
In reply to: Pagination not workingHey earrame
Note: This function isn’t meant to be used by plugins or themes. As explained later, there are better, more performant options to alter the main query. query_posts() is overly simplistic and problematic way to modify main query of a page by replacing it with new instance of the query. It is inefficient (re-runs SQL queries) and will outright fail in some circumstances (especially often when dealing with posts pagination).
I suggest you don’t use query_posts and instead use wp_query()
it’s supposed to not cause any problem but in case the pagination doesn’t appear you can use the_posts_pagination() outside of the loopForum: Themes and Templates
In reply to: [Fashionistas] How to make sidebar stickyHey caramelsuncom !
ok there are many ways to achieve :
1- using a plugin like Sticky menu
I didn’t try it before so I can’t really say if it’s good or not2- the other solution is using jQuery , I prefer not going into this 2nd solution unless the 1st one doesn’t work for you. This one requires some coding and playing with the theme files so better keep it as an alternative in case you don’t code
Forum: Themes and Templates
In reply to: Removing the Main title from Navigation Barit wouldn’t have deleted anything if you did what I said and selected “main” page as your front page like in here : http://imgur.com/pxBqh0m
look only at the part saying front page displaysHey Cvelasco36
Can you paste your website url?
Forum: Themes and Templates
In reply to: [fyeah] Main Title Font Color?Hey Debi !
can you provide the website link? This helps providing a precise solution 🙂
Forum: Themes and Templates
In reply to: [azeria] Change color in Portfolio & Slider elementHey fuhi !
Yes it is but would you please be more precise? like paste the url to your website and what are the changes you want to make exactly?
Forum: Themes and Templates
In reply to: Removing the Main title from Navigation BarHey wakeupchev !
ofc you can 😉 Go to appearence > menu and remove the page main from the menu boxes.that’s supposed to work if not let me know
oh and btw nice website 🙂
Cheers !
Forum: Themes and Templates
In reply to: [Shamrock] Sidebar not showing up in postsHey annie88b !
Try checking appearence > widgets and see if you have an option to set a sidebar for your posts.It will be there if your theme supports sidebars within posts
Forum: Themes and Templates
In reply to: [Social Magazine] Posts with same heightyou are welcome 🙂