rizaldy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: What file do I edit to change font size?hy dilynnring
to change the font size try edit csshttps://dilynnring.com/photostyles3.css line 6
body { color:#CCCCCC; font-family:"Lucida Sans Unicode","Lucida Grande",sans-serif; font-size:14px; }
change the font-size to around 12px maybe . .
and for the second question, if i look into archive source code i guess it’s missing div id=”container” to contain div id content and div id sidebar
so the layout is broken. try copy index.php to archive page.and i have one question,why the photostyles3.css is not in theme folder ? it’s best to had all file in one theme folder so its easy to track down…… just my two cent ??
Rizaldy
Forum: Plugins
In reply to: mass server file download managerhi whytwitter.
Try drain hole plugin by urbangiraffe, it will do the tricks ??Forum: Plugins
In reply to: [kommiku plugin] sufficient permissions issuethanx for the fix lokis it work!
have you try access the page directly ?
in my case, my comic is naruto had only one chapter and permalink that appear in create page isPermalink: https://dotspiral.com/manga/naruto/01/
try paste the link with your domain in browser
https://yourcoolsite.com/manga/naruto/01/
it work for me.
ps. sorry i cannot provide you with any link, becouse i’m still testing it in my localserver.
Forum: Plugins
In reply to: [Plugin: Kommiku] Some IssuesThis is a dream plugin for hosting comic!!
But i can’t seem to be able to access plugin settings page. I keep getting this message:
You do not have sufficient permissions to access this page.
the plugin stated that Compatible up to: 2.9.2 and i’m using 2.9.2
i hope there’s a fix for this. such a good plugin kommiku!
-Rizaldy-
Forum: Themes and Templates
In reply to: code in the postlooking into your css i found that you put .code
.code { color: dimgray; font-family: courier, serif; background-color: #EEEEEE; padding: 10px; border: 1px solid #888888; margin: 0 20px 0 20px; width: 530px; }
remove “.” like this
code { color: dimgray; font-family: courier, serif; background-color: #EEEEEE; padding: 10px; border: 1px solid #888888; margin: 0 20px 0 20px; width: 530px; }
Forum: Themes and Templates
In reply to: Is it possible to have two post thumbnailsi guess custom field will do the trick.
try make 2 custom field, 1 for the sash and the other for the image, call both of them in your template and let css do the syle after that.
Forum: Plugins
In reply to: mass server file download managernevermind i found drain hole plugin by urbangiraffe
fantastic plugin!
if somebody had a problem like mine, just use drain hole plugin
cased closed
Forum: Themes and Templates
In reply to: blog title image insertionif just inserting image instead using default font then the easy solution is just delete
<h2><?php bloginfo('description'); ?></h2>
and change it with<img src="path/to/image">
cheers
A-rForum: Themes and Templates
In reply to: Putting my image in the header of this themeglad to help
btw handsome boy u got there ??Forum: Themes and Templates
In reply to: Putting my image in the header of this themehai tina, have you try to put the image between <h1> tag :
try change :
<h1><?php bloginfo(‘name’); ?></h1>
with
<h1><img src=”https://www.tinawann.com/Blog%20Images/website.jpg”></h1>hope it help ??
Forum: Themes and Templates
In reply to: Changing Pictures in Themeshave you try to access the image directly ? like typing
https://https://www.yourdomain.com/wp-content/themes/yourthemes/image/image.jpg in browserwhat if you put the original image back in ? does it show up ?
Forum: Fixing WordPress
In reply to: I lose most website images when i click on a categoryif it’s on your theme folder, try put
<?php bloginfo('template_directory'); ?>
<img src="<?php bloginfo('template_directory'); ?>/images/image.jpg"/>
save you trouble later on
-A-r-
Forum: Fixing WordPress
In reply to: Changing content background color in Mandigo theme – need helpyup ofcourse, if the image is define as a background then it will rendered the whole image as the div background, then if div is set wider than the actual looks of the site the image must edited to make it aligned with header and footer.
Forum: Themes and Templates
In reply to: Making good progress, image ref help pleaseare the image folder is in your wp-content/themes/(yourtheme)
if it is, try put <?php bloginfo(‘template_directory’); ?>
<img src="<?php bloginfo('template_directory'); ?>/images/designstyle.gif"/>
-A-r-
Forum: Themes and Templates
In reply to: How to add a new image to headeri can’t understand what you meant on question number one, are you try to put the image all the way to the left and keep the blog name in the center ?
but on the second question find :
#header h1 { color:#FFFFFF; font-family:Arial,Georgia,Trebuchet MS; font-size:36px; font-weight:normal; margin:0; padding:20px 0 0; text-decoration:none;
}
change padding:20px 0 0;
change the 20px to either 35 or 40px
on your style.css i think its on line 72hope it help ??
-A-r-