imintheus
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Navigation won't stay fixedtook me a few to see what was going on but…
first move your menu div inside your header div (make your menu div a child of header div)then
in style.css line 100
replace what you have with#menu{
padding: 137px 0px 0px 250px;
position:absolute;
display:inline;
margin:0;
}and thats it! its pretty much exact and does exactly what you want
Forum: Themes and Templates
In reply to: Header with clickable areasForum: Themes and Templates
In reply to: Graphene – Changing Header heightand you tried to edit line 160 in style.css?
Forum: Themes and Templates
In reply to: Activate menu links?oh and make sure its anywhere about line 120 so you might have to move some css down
Forum: Themes and Templates
In reply to: Activate menu links?his works
just remove “>” so its#cats .current_page_item {
border-bottom: 1px solid #000000;
}but it messes up your content so add a margin to main like this
#main {
overflow:hidden;
margin-top:5px;Forum: Themes and Templates
In reply to: Header/Theme Width Probleminside style-weaver.css line 19 either add padding to the left to match the space or take it off.
so line 19 will look like this
#wrapper {border: 1px solid #222222; padding-right: 0px; margin-top: 15px; margin-bottom: 15px;}
**also be sure and remove or set to 0(zero) line 425 inside the style.css
Forum: Themes and Templates
In reply to: Platform Social Media Icons Not Showingyou may want to be sure they are enabled or see if there is a section in your theme that will change this before you change your css
Forum: Themes and Templates
In reply to: Platform Social Media Icons Not Showingline 416 in style.css
width: 220px;Forum: Themes and Templates
In reply to: Adding thumbnail to post summarymaybe try this…. it explains it a little better
This WebsiteForum: Themes and Templates
In reply to: How to align images in a single post?ok cool no problem
Forum: Themes and Templates
In reply to: How to align images in a single post?look in your “cleaner gallery” plugin css
Forum: Themes and Templates
In reply to: How to align images in a single post?do have any gallery plugins installed?
Forum: Themes and Templates
In reply to: How to align images in a single post?in your gallery.css change this
.gallery .gallery-item .gallery-icon img {
width: auto;
max-width: 100%;
height: auto;
padding: 1%;
margin: 0 auto;
}
and take off the padding and put it only on the top so...gallery .gallery-item .gallery-icon img {
width: auto;
max-width: 100%;
height: auto;
padding-top:2%;
margin: 0 auto;
}Forum: Themes and Templates
In reply to: Header/Theme Width Problem(line 226)
#wrapper {
margin: 0 auto;
width: 920px;and to fix corners (starts line 423)
/* This is the custom header image */
#branding {
} /* ability to hide things required this one */
#branding img {
clear: both;
display: block;
margin-left: auto;
margin-right: auto;
border-top-left-radius: 12px 9px;
border-top-right-radius: 12px 9px;
margin-bottom: 0;
}