Steven
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Adjusting Menu HeaderHello,
I’m not sure if this is the fix you are looking for but you can try putting this code in your css edit to change the size of the blue header.
.header-border-top
{
height: 10px; *or whatever size you want*
}hope that helps!
Forum: Plugins
In reply to: [Code Snippet Library] Show/Hide Code SnippetsOh sorry, forgot to mention the webpage:
http://slamlink.net/java/lab-6-black-jack/
the buttons are at the very bottom on the right column. Thanks!
Forum: Fixing WordPress
In reply to: Webpage Shifting Problemperfect, thanks a bunch alchymyth! I hope it stays like this now~
-Steven
Forum: Fixing WordPress
In reply to: Webpage Shifting Problemokay, I’ve been using </br> instead of
or
because it gives me a larger page break in my paragraphs. I fixed all the ID errors except “code_title”; is it a big problem in html to share the same ID among multiple headers?Forum: Fixing WordPress
In reply to: Webpage Shifting Problemis </br> an invalid end tag bar? CI use it to make a larger page break in my paragraphs. Is there a better way to do this to fix this “error”?
Forum: Fixing WordPress
In reply to: Webpage Shifting Problemwow thanks! that’s a big help! Let me fix all of them and see if there are any problems still.
Forum: Fixing WordPress
In reply to: Webpage Shifting ProblemAh, I have this code in my edit css:
#sidebar.column.threecol {
width: 185px;
}.column.twocol {
width: 100%;
}#content.column.twothirdcol {
width: 900px;
}And they’re marked with I’s on the left side of the line numbers.
I changed the names of the ids on the content page but that didnt do the trick =/
Forum: Fixing WordPress
In reply to: How to edit webpage for mobile deviceshey guys, I didn’t want to create another post so heres a bump.
I updated my website a bit but when I view my website on a mobile device/tablet, it looks funky like the dividers/containers are not aligned or shaped correctly to fit the screen. I tried the media query but that didnt the trick. Any help or suggestions would be appreciated!
-Steven
Forum: Fixing WordPress
In reply to: How to edit webpage for mobile devicesOh thank you david choi, I will definitely look into this.
I do have some questions:
1) What is this href for? <link href=”mediaqueries.css” rel=”stylesheet” />
2) And what does this code do? <meta name=”viewport” content=”width=device-width; initial-scale=1.0″>
thanks!
Forum: Fixing WordPress
In reply to: How to organize my pagesHey design, I’m pretty new to wordpress but I found out a good way of organizing pages is that when you create a web page, on the right side there is an option that says “parent page”. This allows you to select which page the new page goes under. It’s like if I’m talking about ice cream on one web page and and cookies on another. If they’re both sweets, I can say the parent page is sweets. I’m not sure if this is only because of my theme or not though… Kurt also had a good idea! hope I helped~
Forum: Themes and Templates
In reply to: [Theme: Pinboard] Homepage Posts alignmentTerry, if you mean the menu bar then it was how the Pinboard Theme made it. I just had to go to the WP admin page to create the menu.
Forum: Themes and Templates
In reply to: [Theme: Pinboard] Homepage Posts alignmentupdate: I changed my #content to be with a fixed pixel but the posts still look funky and out of place. Is there a way i can edit the <div> directly?
new CSS:
#sidebar.column.threecol {
width: 185px;
}.column.twocol {
width: 100%;
}#content.column.twothirdcol {
width: 900px;
}.page .entry-title {
text-align: center;
}.page-title {
text-align: center;
}.widget-title {
color: black;
}#header #searchform {
display: none;
float: none;
}#site-title img {
margin: 0;
padding: 0;
float: left;
line-height: 0;
}#site-description {
display: none;
margin: 0;
font-weight: 300;
float: left;
line-height: 0;
}#site-title {
margin: 0;
margin-right: 0;
line-height: 0;
float: left;
}#social-media-icons {
display: none;
float: none;
margin-top: 0;
}#sidebar-header {
display: none;
}#sidebar-header {
float: none;
width: 0;
height: 0;
margin: 0;
overflow: hidden;
}#header {
border-top: 0 solid #111111;
}Forum: Themes and Templates
In reply to: [Theme: Pinboard] Homepage Posts alignmentMy current CSS is :
#sidebar.column.threecol {
width: 25%;
}.column.twocol {
width: 276px;
}#content.column.twothirdcol {
width: 75%;
}#container .entry-meta {
width: 185px;
}#container .entry-summary {
width: 555px;
}.page .entry-title {
text-align: center;
}.page-title {
text-align: center;
}.widget-title {
color: black;
}#header #searchform {
display: none;
float: none;
}#site-title img {
margin: 0;
padding: 0;
float: left;
line-height: 0;
}#site-description {
display: none;
margin: 0;
font-weight: 300;
float: left;
line-height: 0;
}#site-title {
margin: 0;
margin-right: 0;
line-height: 0;
float: left;
}#social-media-icons {
display: none;
float: none;
margin-top: 0;
}#sidebar-header {
display: none;
}#sidebar-header {
float: none;
width: 0;
height: 0;
margin: 0;
overflow: hidden;
}#header {
border-top: 0 solid #111111;
}Forum: Themes and Templates
In reply to: Pinboard theme header sizeNo… I just know it’s the slider because when I tested float left, everything moved to the left including the title of the slide and the three buttons. I think the button/title should be moved a little to the left.
You can try resizing the image, thats what i did to fix my problem that was similar.
Forum: Themes and Templates
In reply to: Pinboard theme header sizeI’m not entirely sure but from firebug, i think its cause of the slider…
try
#slider .entry-title
{
float: left;
}*i’m new to wordpress too! slowly learning how to modify pinboard as well