Raidenlee
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Cannyon] How can I change the size of the "Read More" button?Try adding this to your style.css file (go to Appearance -> Editor -> Style.css):
article a.more-link { padding: 2px 2px; }Forum: Themes and Templates
In reply to: Title not showingAh yes, i forgot about page templates where pages are built using more than one ‘template’ so you need to put it in different files.
Try to put it in a file called content.phpForum: Themes and Templates
In reply to: [Sydney] Increase padding between Page Title and Menu Header@james Noted. You are right about liability, bad_stuff, etc. I am a WordPress developer for a company called Techbase Solutions Ltd. I like fixing bugs, tweaking, etc because it helps me learn more about problems experienced with wp.
@amsservice The only way for me to fix this situation in a timely manner is to actually log into wp system and make the changes. Mainly because a lot of padding and layout changes were made. I do hope someone comes along with a solution. Good Luck!
Forum: Themes and Templates
In reply to: WP Nav Menu ProblemI have found “A custom WordPress nav walker class to fully implement the Twitter Bootstrap 3.0+ navigation style in a custom theme using the WordPress built in menu manager”
Link here if anyone is interested: https://github.com/twittem/wp-bootstrap-navwalker
Forum: Themes and Templates
In reply to: [Sydney] Increase padding between Page Title and Menu HeaderThe only standard way to change the padding is to use the style.css file (i use that all the time).
Since the paddings were edited for some of the pages then you would need do some advanced css editing to change the padding per page or revert all paddings to their original setting.
If you want i can check it for you.
[removed]Forum: Themes and Templates
In reply to: [Sydney] Increase padding between Page Title and Menu HeaderPlace it anywhere inside the style.css file. But not in between any elements. I.e place it in a blank space.
I did notice that all of your pages have a different padding problem. So this fix would only help for the About Us page.
The Sydney theme you are using, how did you get the titles at the top?Forum: Themes and Templates
In reply to: [Sydney] Increase padding between Page Title and Menu HeaderDo you know how to find your CSS File – style.css? (Appearance -> Editor -> style.css)
Enter this code in it:
body { padding-top: 30px; }Forum: Themes and Templates
In reply to: [Sydney] Increase padding between Page Title and Menu HeaderDo you have the page live?
Forum: Themes and Templates
In reply to: Title not showingOk in the index.php page you need to place this code:
<?php the_title(); ?>or
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>Where to place it:
1. After your NAV Menu
2. Or after the <body> tag
3. Or inside the loop where you are printing the_content();Forum: Themes and Templates
In reply to: Title not showingYou want code or a plugin to do this?
Forum: Plugins
In reply to: [Plugin: WordPress Meta Data and Taxonomies] Filter problem