Ham Radio
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Custom Community] menu / nav bar positioningdiv#sidebar { width: 15%; margin-left: -225px; }
.paddersidebar { padding: 30px 10px; }
These should be the setting that you are looking for.
Forum: Themes and Templates
In reply to: [Custom Community] menu / nav bar positioningHave you made sure the theme setting “responsive” is enabled?
Appearance -> Theme Settings -> General Tab -> Responsive (Third from the top). Make sure it is set on “Enabled”
Forum: Themes and Templates
In reply to: [Custom Community] menu / nav bar positioningYour Welcome ??
Please give me the link to your website.
Forum: Themes and Templates
In reply to: [Custom Community] menu / nav bar positioning#access { background: none repeat scroll 0% 0% rgb(237, 237, 237); display: block; float: left; padding-top: 6px; width: 100%; position: absolute; bottom: 0px; margin: 0px 0px -40px; }
Change “width” to the width you want, then change the middle value of “margin” to move it across the screen.
Forum: Themes and Templates
In reply to: [Custom Community] How to change font style for site title.Your Welcome ??
Forum: Themes and Templates
In reply to: [Custom Community] where to put php code for a slideshow pluginYour Welcome, glad you got it working.
Forum: Themes and Templates
In reply to: [Custom Community] where to put php code for a slideshow pluginOpen up header.php, and find this line of code. For me, it is like 66:
</div><!-- #header -->
Put your slideshow code directly underneath it. At this point, it will probably align it left. If it does this, and you want it centered, then do this:
<div align="center"> (Code for slideshow) </div>
Forum: Themes and Templates
In reply to: [Custom Community] where to put php code for a slideshow pluginDo you want this slideshow to be seen on every page of your website?
Forum: Themes and Templates
In reply to: [Custom Community] where to put php code for a slideshow pluginWell, this depends. If you put the slideshow code in your Header.php file, then it will show up on ever page of your website. Is that what you want?
Forum: Themes and Templates
In reply to: [Custom Community] Site URL in tab instead of site titleYour Welcome, and thanks for that refrence too.
Forum: Themes and Templates
In reply to: [Custom Community] menu / nav bar positioningUse this, and change it so that your nav bar is center:
#access .menu-header, div.menu { font-size: 13px; margin-left: 25px; }
Forum: Themes and Templates
In reply to: [Custom Community] How to change font style for site title.Go to the Custom Community theme settings, click on the CSS tab, copy and paste this there and change it to your liking.
#header div#logo h1 a, #header div#logo h4 a { font-size: 37px; line-height: 130%; font-family: georgia; color: black; }
Forum: Themes and Templates
In reply to: [Custom Community] Site URL in tab instead of site titleHere is my fix:
You need to find the header.php file of the Custom Community theme. There are two ways you can do this:
1. Go to your WordPress Dashboard, and go to Appearance -> Editor -> header.php.
2. Log into your hosting cPanel, or FTP and go to public_html -> (Your Website Directory) /wp-content/themes/custom-community/header.php.
After finding the header.php file, open it up and find
<title><?php wp_title(); ?></title>
For me, it was line 9.Replace that, with this:
<title><?php if (is_home () ) { bloginfo('name'); } elseif ( is_category() ) { single_cat_title(); echo ' - ' ; bloginfo('name'); } elseif (is_single() ) { single_post_title(); } elseif (is_page() ) { bloginfo('name'); echo ': '; single_post_title(); } else { wp_title('',true); } ?></title>
Save the file, and resfresh your browser.
Forum: Fixing WordPress
In reply to: Line spacing in Pages and PostsOk, thanks for that info!!! I have been to the w3 School website before, I will have to study their material more. I have also heard of Firebug. You think it is better then the built in developer tools in Firefox?
Thanks for the link to the Codex as well.So basically the impression that I am getting, is that the text font, color, size, etc should be the same through the entire site?
I am still a little fuzzy on that part. If that isn’t the case, then I use CSS to change the font size, color, etc on my pages?
I am using wordpress more as a CMS then a blogging platform, and it seems that if I have a website with the same size font, color, etc that it makes the site rather boring. I would want to have different text sizes, colors, etc in my pages, so how would I do that? Thanks :).Forum: Fixing WordPress
In reply to: Line spacing in Pages and PostsThanks for the reply!
Hm……ok. When you say the stylesheet, do you mean the css stylesheet?
Is there a link that you can give me so I can read up on that more? Thanks.The person that I building this site for want’s more then just the same size text everywhere. So how would I make text different sizes and colors on the same page? Thanks for your help, much appreciated ??